From: <abe...@us...> - 2017-01-15 17:15:11
|
Revision: 8099 http://sourceforge.net/p/astlinux/code/8099 Author: abelbeck Date: 2017-01-15 17:15:08 +0000 (Sun, 15 Jan 2017) Log Message: ----------- acme, astlinux.sh, simplify logger messages by removing bash'isms Modified Paths: -------------- branches/1.0/package/acme/astlinux.sh Modified: branches/1.0/package/acme/astlinux.sh =================================================================== --- branches/1.0/package/acme/astlinux.sh 2017-01-15 16:32:01 UTC (rev 8098) +++ branches/1.0/package/acme/astlinux.sh 2017-01-15 17:15:08 UTC (rev 8099) @@ -37,7 +37,7 @@ fi sleep 1 service lighttpd init - logger -s -t ${0##*/}[$$] "${BASH_SOURCE##*/}:$LINENO New ACME certificates deployed for HTTPS and Lighttpd restarted" + logger -s -t acme-client "New ACME certificates deployed for HTTPS and Lighttpd restarted" fi if [ "$SIPTLSCERT_ACME" = "yes" ]; then @@ -50,7 +50,7 @@ cat "$_ckey" > /mnt/kd/ssl/sip-tls/keys/server.key chmod 600 /mnt/kd/ssl/sip-tls/keys/server.key asterisk -rx "core restart when convenient" >/dev/null 2>&1 & - logger -s -t ${0##*/}[$$] "${BASH_SOURCE##*/}:$LINENO New ACME certificates deployed for SIP-TLS and Asterisk restart when convenient requested" + logger -s -t acme-client "New ACME certificates deployed for SIP-TLS and Asterisk restart when convenient requested" fi return 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |