diff options
-rw-r--r-- | manifests/subsystem/fstrim.pp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/subsystem/fstrim.pp b/manifests/subsystem/fstrim.pp new file mode 100644 index 0000000..1086dea --- /dev/null +++ b/manifests/subsystem/fstrim.pp @@ -0,0 +1,7 @@ +class nodo::subsystem::fstrim( + $enable = true, +) { + service { 'fstrim.timer': + enable => true, + } +} |