diff --git a/systemd_units/update.sh b/systemd_units/update.sh index 3b23f67..1efa33f 100755 --- a/systemd_units/update.sh +++ b/systemd_units/update.sh @@ -8,7 +8,7 @@ function prettyPrint() { } # Grab all service names -declare -a services=('mirror-bot' 'mirror-bot-2' 'uno-bot' 'walls-bot-rs') +declare -a services=('mirror-bot' 'uno-bot') # Now loop through each service and install it for service in "${services[@]}"; do diff --git a/systemd_units/walls-bot-rs.service b/systemd_units/walls-bot-rs.service deleted file mode 100644 index c30f133..0000000 --- a/systemd_units/walls-bot-rs.service +++ /dev/null @@ -1,27 +0,0 @@ -[Unit] -Description=walls-bot-rs service -After=network.target - -[Service] -Restart=on-abort -Type=simple -User=bot -WorkingDirectory=/home/bot -EnvironmentFile=/home/bot/walls-bot.config -ExecStart=/usr/bin/walls-bot-rs -ExecReload=/bin/kill -USR1 $MAINPID -KillMode=mixed -KillSignal=SIGINT -TimeoutStopSec=10s - -# Security -PrivateTmp=true -ProtectSystem=full -ProtectControlGroups=true -ProtectKernelModules=true -ProtectKernelTunables=true -PrivateDevices=true -SystemCallArchitectures=native - -[Install] -WantedBy=multi-user.target