mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-18 04:11:46 +00:00
minor, fix uninstall messages.
This commit is contained in:
parent
5419c23f62
commit
ae5f79d80a
8
le.sh
8
le.sh
@ -567,7 +567,15 @@ install() {
|
|||||||
uninstall() {
|
uninstall() {
|
||||||
_initpath
|
_initpath
|
||||||
_info "Removing cron job"
|
_info "Removing cron job"
|
||||||
|
|
||||||
|
if ! crontab -l | grep 'le.sh renewAll' ; then
|
||||||
crontab -l | sed "/le.sh renewAll/d" | crontab -
|
crontab -l | sed "/le.sh renewAll/d" | crontab -
|
||||||
|
if command -v crond > /dev/null ; then
|
||||||
|
service crond reload 2>/dev/null
|
||||||
|
else
|
||||||
|
service cron reload 2>/dev/null
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
_info "Removing /bin/le.sh"
|
_info "Removing /bin/le.sh"
|
||||||
rm -f /bin/le
|
rm -f /bin/le
|
||||||
|
Loading…
Reference in New Issue
Block a user