diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2018-07-02 04:38:49 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2018-07-02 04:38:49 +0300 |
commit | 9ef25f6edb9a6895df2c3784e9ec4da969bba97a (patch) | |
tree | 02137d6b04a766532547fba75a604388f8a9c928 | |
parent | initial commit (diff) | |
download | cgitize-9ef25f6edb9a6895df2c3784e9ec4da969bba97a.tar.gz cgitize-9ef25f6edb9a6895df2c3784e9ec4da969bba97a.zip |
add systemd units
-rw-r--r-- | %HOME%/.config/systemd/user/pull.service | 11 | ||||
-rw-r--r-- | %HOME%/.config/systemd/user/pull.timer | 10 | ||||
-rw-r--r-- | .gitignore | 1 |
3 files changed, 22 insertions, 0 deletions
diff --git a/%HOME%/.config/systemd/user/pull.service b/%HOME%/.config/systemd/user/pull.service new file mode 100644 index 0000000..6970520 --- /dev/null +++ b/%HOME%/.config/systemd/user/pull.service @@ -0,0 +1,11 @@ +[Unit] +Description=Run pull.sh +Wants=ssh-agent.service + +[Service] +Type=simple +WorkingDirectory=/srv/git +ExecStartPre=/usr/bin/truncate --size=0K -- /srv/git/pull.log +ExecStart=/srv/git/pull.sh +StandardOutput=file:/srv/git/pull.log +StandardError=inherit diff --git a/%HOME%/.config/systemd/user/pull.timer b/%HOME%/.config/systemd/user/pull.timer new file mode 100644 index 0000000..b39b357 --- /dev/null +++ b/%HOME%/.config/systemd/user/pull.timer @@ -0,0 +1,10 @@ +[Unit] +Description=Run pull.sh periodically + +[Timer] +Persistent=false +OnCalendar=daily +AccuracySec=1 + +[Install] +WantedBy=timers.target @@ -1,2 +1,3 @@ +/links.bin /pull.log /repos/ |