Browse Source

Merge pull request #6194 from ghen2/hostname

Portability: use `uname -n` instead of `hostname`.
pull/6198/head
neil 2 weeks ago
committed by GitHub
parent
commit
6313020ba9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      acme.sh

2
acme.sh

@ -6813,7 +6813,7 @@ _send_notify() {
_nsource="$NOTIFY_SOURCE"
if [ -z "$_nsource" ]; then
_nsource="$(hostname)"
_nsource="$(uname -n)"
fi
_nsubject="$_nsubject by $_nsource"

Loading…
Cancel
Save