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