aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/systemd
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--systemd/pull-cgit-repos.service13
-rw-r--r--systemd/pull-cgit-repos.timer10
2 files changed, 23 insertions, 0 deletions
diff --git a/systemd/pull-cgit-repos.service b/systemd/pull-cgit-repos.service
new file mode 100644
index 0000000..1951247
--- /dev/null
+++ b/systemd/pull-cgit-repos.service
@@ -0,0 +1,13 @@
+# Adjust as you see fit.
+
+[Unit]
+Description=Pull cgit repositories
+Wants=ssh-agent.service
+
+[Service]
+Type=simple
+WorkingDirectory=%h/workspace/personal/cgit-repos
+ExecStartPre=/usr/bin/truncate --size=0K -- %h/var/cgit-repos/pull-cgit-repos.log
+ExecStart=/usr/bin/python3 -m pull.main --config %h/etc/cgit-repos/cgit-repos.conf
+StandardOutput=file:%h/var/cgit-repos/pull-cgit-repos.log
+StandardError=inherit
diff --git a/systemd/pull-cgit-repos.timer b/systemd/pull-cgit-repos.timer
new file mode 100644
index 0000000..de56c5a
--- /dev/null
+++ b/systemd/pull-cgit-repos.timer
@@ -0,0 +1,10 @@
+[Unit]
+Description=Pull cgit repositories periodically
+
+[Timer]
+Persistent=false
+OnCalendar=daily
+AccuracySec=1
+
+[Install]
+WantedBy=timers.target