summarylogtreecommitdiffstats
path: root/nextcloud-systemd-timers.install
diff options
context:
space:
mode:
authorDominik Schrempf2018-11-28 10:23:53 +0100
committerDominik Schrempf2018-11-28 10:23:53 +0100
commitb03e249923569fe28e279c457cc4268b8300482e (patch)
tree54d91fff7f57e14dd77d1c5de76b0c0e6b7294df /nextcloud-systemd-timers.install
parent2246da19cf4397a856e83b97e17ac6641b0fe1ee (diff)
downloadaur-b03e249923569fe28e279c457cc4268b8300482e.tar.gz
Rename package, include file scan timer.
Diffstat (limited to 'nextcloud-systemd-timers.install')
-rw-r--r--nextcloud-systemd-timers.install41
1 files changed, 41 insertions, 0 deletions
diff --git a/nextcloud-systemd-timers.install b/nextcloud-systemd-timers.install
new file mode 100644
index 000000000000..3650ae45389f
--- /dev/null
+++ b/nextcloud-systemd-timers.install
@@ -0,0 +1,41 @@
+# This is a default template for a post-install scriptlet.
+# Uncomment only required functions and remove any functions
+# you don't need (and this header).
+
+## arg 1: the new package version
+#pre_install() {
+ # do something here
+#}
+
+## arg 1: the new package version
+post_install() {
+ # do something here
+ echo "Activate the timer with"
+ echo '$ systemctl daemon-reload'
+ echo '$ systemctl start nextcloudcron.timer'
+ echo '$ systemctl enable nextcloudcron.timer'
+ echo 'Check if timer is activated with'
+ echo '$ systemctl list-timers'
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+#pre_upgrade() {
+ # do something here
+#}
+
+## arg 1: the new package version
+## arg 2: the old package version
+#post_upgrade() {
+ # do something here
+#}
+
+## arg 1: the old package version
+#pre_remove() {
+ # do something here
+#}
+
+## arg 1: the old package version
+#post_remove() {
+ # do something here
+#}