linux - rename cron

This commit is contained in:
bunkerity 2021-08-18 17:46:28 +02:00
parent fd52bb7c8d
commit a824e15684
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
4 changed files with 5 additions and 13 deletions

View File

@ -891,7 +891,7 @@ if [ "$OS" = "alpine" ] ; then
CRON_PATH="/etc/crontabs/nginx"
else
CRON_SRC="/tmp/bunkerized-nginx/misc/cron-linux"
CRON_PATH="/etc/cron.d/nginx"
CRON_PATH="/etc/cron.d/bunkerized-nginx"
fi
do_and_check_cmd cp "$CRON_SRC" "$CRON_PATH"
do_and_check_cmd chown root:nginx "$CRON_PATH"

View File

@ -64,16 +64,7 @@ sed -i "s@nginx ALL=(root:root) NOPASSWD: /opt/bunkerized-nginx/ui/linux.sh@@" /
# Remove cron
echo "[*] Remove cron"
if [ "$OS" = "debian" ] || [ "$OS" = "ubuntu" ] ; then
CRON_PATH="/var/spool/cron/crontabs/nginx"
elif [ "$OS" = "centos" ] ; then
CRON_PATH="/var/spool/cron/nginx"
elif [ "$OS" = "alpine" ] ; then
CRON_PATH="/etc/crontabs/nginx"
fi
if [ -e "$CRON_PATH" ] ; then
do_and_check_cmd rm -f "$CRON_PATH"
fi
do_and_check_cmd rm -f /etc/crond.d/bunkerized-nginx
# Remove /opt/bunkerized-nginx
if [ -e "/opt/bunkerized-nginx" ] ; then

View File

@ -13,4 +13,6 @@ rm -f /lib/systemd/system/anaconda.target.wants/*;\
rm -f /lib/systemd/system/*tmpfiles*;\
rm -f /lib/systemd/user/*tmpfiles*;\
find /lib/systemd/ -type f -iname "*.service" -exec rm -f {} \;;\
find /etc/systemd/ -type f -iname "*.service" -exec rm -f {} \;
find /etc/systemd/ -type f -iname "*.service" -exec rm -f {} \;;\
find /lib/systemd/ -type f -iname "*.timer" -exec rm -f {} \;;\
find /etc/systemd/ -type f -iname "*.timer" -exec rm -f {} \;

View File

@ -5,7 +5,6 @@
<meta name="description" content="bunkerized-nginx user interface">
<meta name="author" content="bunkerity">
<title>bunkerized-nginx-ui - {{ title }}</title>
<!-- TODO : favicon -->
<link rel="icon" type="image/png" href="img/favicon16.png" sizes="16x16">
<link rel="icon" type="image/png" href="img/favicon32.png" sizes="32x32">
<link href="css/bootstrap.min.css" rel="stylesheet">