mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-10-31 19:41:45 +00:00
modify shebang to bash after install if bash is installed.
This commit is contained in:
parent
c5f2df5c93
commit
0a7c936442
27
acme.sh
27
acme.sh
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/usr/bin/env sh
|
||||
VER=2.2.1
|
||||
|
||||
PROJECT_NAME="acme.sh"
|
||||
@ -1844,6 +1844,19 @@ _precheck() {
|
||||
return 0
|
||||
}
|
||||
|
||||
_setShebang() {
|
||||
_file="$1"
|
||||
_shebang="$2"
|
||||
if [ -z "$_shebang" ] ; then
|
||||
_err "Usage: file shebang"
|
||||
return 1
|
||||
fi
|
||||
cp "$_file" "$_file.tmp"
|
||||
echo "$_shebang" > "$_file"
|
||||
sed -n 2,99999p "$_file.tmp" >> "$_file"
|
||||
rm -f "$_file.tmp"
|
||||
}
|
||||
|
||||
install() {
|
||||
|
||||
if ! _initpath ; then
|
||||
@ -1938,6 +1951,18 @@ install() {
|
||||
|
||||
installcronjob
|
||||
|
||||
#Modify shebang
|
||||
if _exists bash ; then
|
||||
_info "Good, bash is installed, change the shebang to use bash as prefered."
|
||||
_shebang='#!/usr/bin/env bash'
|
||||
_setShebang "$LE_WORKING_DIR/$PROJECT_ENTRY" "$_shebang"
|
||||
if [ -d "$LE_WORKING_DIR/dnsapi" ] ; then
|
||||
for _apifile in $(ls "$LE_WORKING_DIR/dnsapi/"*.sh) ; do
|
||||
_setShebang "$_apifile" "$_shebang"
|
||||
done
|
||||
fi
|
||||
fi
|
||||
|
||||
_info OK
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/usr/bin/env sh
|
||||
|
||||
|
||||
#
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/usr/bin/env sh
|
||||
|
||||
# Cloudxns.com Domain api
|
||||
#
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/usr/bin/env sh
|
||||
|
||||
# Dnspod.cn Domain api
|
||||
#
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/usr/bin/env sh
|
||||
|
||||
#Here is a sample custom api script.
|
||||
#This file name is "dns_myapi.sh"
|
||||
|
Loading…
Reference in New Issue
Block a user