2025-01-15 14:16:24 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This script can be run to update or newly install
|
|
|
|
# the systemd services needed for
|
2025-01-15 14:24:25 +01:00
|
|
|
sudo -i
|
2025-01-15 14:25:45 +01:00
|
|
|
cat ../systemd/plenumbot.service > /etc/systemd/system/plenumsbot.service
|
|
|
|
cat ../systemd/plenumbot.timer > /etc/systemd/system/plenumsbot.timer
|
2025-01-15 14:24:25 +01:00
|
|
|
chmod 755 /etc/systemd/system/plenumsbot.timer
|
|
|
|
chmod 755 /etc/systemd/system/plenumsbot.service
|
2025-01-15 14:16:24 +01:00
|
|
|
|
2025-01-15 14:24:25 +01:00
|
|
|
systemctl daemon-reload
|