aboutsummaryrefslogtreecommitdiff
path: root/deploy_systemd.sh
blob: e90f0924b9b5fa0d328e7a5bcd4cfca6041e0493 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh

cp -v systemd/*service systemd/*timer /etc/systemd/system/
systemctl daemon-reload

cd systemd
for f in $(ls *.timer); do systemctl enable $f ; done
cd ..