diff options
author | Erich Eckner <git@eckner.net> | 2019-04-09 13:52:17 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-04-09 13:52:17 +0200 |
commit | 1fba609bb30940d3227cd82dfb18b9a0635350b2 (patch) | |
tree | 909d2c938e70326b3669a0fd3b87c8ab703ea4b3 | |
parent | 352dd1c0b56a223271aef33c9a90873d4416ba51 (diff) | |
download | shutdownasap-1fba609bb30940d3227cd82dfb18b9a0635350b2.tar.xz |
systemd timer and service new
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | shutdownasap.service.in | 5 | ||||
-rw-r--r-- | shutdownasap.timer.in | 8 |
4 files changed, 19 insertions, 2 deletions
@@ -1,3 +1,5 @@ shutdownasap shutdownasap.1 shutdownasap.conf +shutdownasap.service +shutdownasap.timer @@ -23,20 +23,22 @@ DESTDIR = ETCDIR = /etc BINDIR = /usr/bin MANDIR = /usr/share/man +SYSTEMDDIR = /usr/lib/systemd/system VERSION = 0.7 -all: shutdownasap shutdownasap.conf shutdownasap.1 +all: shutdownasap shutdownasap.conf shutdownasap.1 shutdownasap.service shutdownasap.timer %: %.in sed "s/#VERSION#/$(VERSION)/; s@#BINDIR#@$(BINDIR)@; s@#ETCDIR#@$(ETCDIR)@" $< > $@ -.PHONY: install dist clean +.PHONY: install install-systemd dist clean install: all install -D -m0755 -t $(DESTDIR)$(BINDIR) shutdownasap install -D -m0644 -t $(DESTDIR)$(MANDIR)/man1 shutdownasap.1 install -D -m0644 -t $(DESTDIR)$(ETCDIR) shutdownasap.conf + install -D -m0644 -t $(DESTDIR)$(SYSTEMDDIR) shutdownasap.service shutdownasap.timer clean: rm -f shutdownasap shutdownasap.1 shutdownasap.conf diff --git a/shutdownasap.service.in b/shutdownasap.service.in new file mode 100644 index 0000000..0c3f6c8 --- /dev/null +++ b/shutdownasap.service.in @@ -0,0 +1,5 @@ +[Unit] +Description=shut down asap + +[Service] +ExecStart=#BINDIR#/shutdownasap diff --git a/shutdownasap.timer.in b/shutdownasap.timer.in new file mode 100644 index 0000000..7f42597 --- /dev/null +++ b/shutdownasap.timer.in @@ -0,0 +1,8 @@ +[Unit] +Description=shut down asap 1h after the system came up + +[Timer] +OnStartupSec=1h + +[Install] +WantedBy=timers.target |