13
Makefile
Normal file
13
Makefile
Normal file
@ -0,0 +1,13 @@
|
||||
systemd_path := /etc/systemd/system
|
||||
install:
|
||||
cp borgbackup.* $(systemd_path)/
|
||||
chmod a+x $(systemd_path)/borgbackup.*
|
||||
systemctl edit borgbackup.service
|
||||
systemctl enable borgbackup.timer
|
||||
systemctl start borgbackup.timer
|
||||
|
||||
uninstall:
|
||||
systemctl disable borgbackup.timer
|
||||
rm -rvf $(systemd_path)/borgbackup.service
|
||||
rm -rvf $(systemd_path)/borgbackup.timer
|
||||
rm -rvf /etc/systemd/system/borgbackup.service.d
|
Reference in New Issue
Block a user