aboutsummaryrefslogtreecommitdiffstats
path: root/roles/zfs/templates
diff options
context:
space:
mode:
Diffstat (limited to 'roles/zfs/templates')
-rw-r--r--roles/zfs/templates/etc/systemd/system/zfs-scrub@.service.j211
-rw-r--r--roles/zfs/templates/etc/systemd/system/zfs-scrub@.timer.j210
-rw-r--r--roles/zfs/templates/etc/systemd/system/zfs-trim@.service.j211
-rw-r--r--roles/zfs/templates/etc/systemd/system/zfs-trim@.timer.j210
-rw-r--r--roles/zfs/templates/etc/zfs/zed.d/zed.rc.j210
5 files changed, 52 insertions, 0 deletions
diff --git a/roles/zfs/templates/etc/systemd/system/zfs-scrub@.service.j2 b/roles/zfs/templates/etc/systemd/system/zfs-scrub@.service.j2
new file mode 100644
index 0000000..3dfb199
--- /dev/null
+++ b/roles/zfs/templates/etc/systemd/system/zfs-scrub@.service.j2
@@ -0,0 +1,11 @@
+[Unit]
+Description=zpool scrub for %i
+
+[Service]
+Nice=19
+IOSchedulingClass=idle
+KillSignal=SIGINT
+ExecStart=zpool scrub %i
+
+[Install]
+WantedBy=multi-user.target
diff --git a/roles/zfs/templates/etc/systemd/system/zfs-scrub@.timer.j2 b/roles/zfs/templates/etc/systemd/system/zfs-scrub@.timer.j2
new file mode 100644
index 0000000..d7b35e2
--- /dev/null
+++ b/roles/zfs/templates/etc/systemd/system/zfs-scrub@.timer.j2
@@ -0,0 +1,10 @@
+[Unit]
+Description=zpool scrub for %i on calendar interval
+
+[Timer]
+OnCalendar={{ zfs_scrub_on_calendar }}
+AccuracySec=1h
+Persistent=true
+
+[Install]
+WantedBy=multi-user.target
diff --git a/roles/zfs/templates/etc/systemd/system/zfs-trim@.service.j2 b/roles/zfs/templates/etc/systemd/system/zfs-trim@.service.j2
new file mode 100644
index 0000000..ef3ec43
--- /dev/null
+++ b/roles/zfs/templates/etc/systemd/system/zfs-trim@.service.j2
@@ -0,0 +1,11 @@
+[Unit]
+Description=zpool trim for %i
+
+[Service]
+Nice=19
+IOSchedulingClass=idle
+KillSignal=SIGINT
+ExecStart=zpool trim %i
+
+[Install]
+WantedBy=multi-user.target
diff --git a/roles/zfs/templates/etc/systemd/system/zfs-trim@.timer.j2 b/roles/zfs/templates/etc/systemd/system/zfs-trim@.timer.j2
new file mode 100644
index 0000000..77e5535
--- /dev/null
+++ b/roles/zfs/templates/etc/systemd/system/zfs-trim@.timer.j2
@@ -0,0 +1,10 @@
+[Unit]
+Description=Zpool trim for %i on calendar interval
+
+[Timer]
+OnCalendar={{ zfs_trim_on_calendar }}
+AccuracySec=1h
+Persistent=true
+
+[Install]
+WantedBy=multi-user.target
diff --git a/roles/zfs/templates/etc/zfs/zed.d/zed.rc.j2 b/roles/zfs/templates/etc/zfs/zed.d/zed.rc.j2
new file mode 100644
index 0000000..4a09398
--- /dev/null
+++ b/roles/zfs/templates/etc/zfs/zed.d/zed.rc.j2
@@ -0,0 +1,10 @@
+ZED_EMAIL_ADDR="{{ zfs_zed_email }}"
+ZED_EMAIL_PROG="mail"
+ZED_EMAIL_OPTS="-s '@SUBJECT@' @ADDRESS@"
+
+ZED_NOTIFY_INTERVAL_SECS={{ zfs_zed_notify_interval_sec }}
+ZED_NOTIFY_VERBOSE={{ zfs_zed_verbose | bool | int }}
+
+ZED_USE_ENCLOSURE_LEDS=1
+
+ZED_SYSLOG_SUBCLASS_EXCLUDE="history_event"