11 lines
382 B
Bash
11 lines
382 B
Bash
#!/bin/sh
|
|
|
|
# This script can be run to update or newly install
|
|
# the systemd services needed for
|
|
|
|
sudo cat systemd/plenumbot.service > /etc/systemd/system/plenumsbot.service
|
|
sudo cat systemd/plenumbot.timer > /etc/systemd/system/plenumsbot.timer
|
|
sudo chmod 755 /etc/systemd/system/plenumsbot.timer
|
|
sudo chmod 755 /etc/systemd/system/plenumsbot.service
|
|
|
|
sudo systemctl daemon-reload |