diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2022-01-08 11:23:07 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2022-01-08 11:23:07 -0300 |
commit | 286b76cf91c60ed283abf35d51bd7bd75e21a108 (patch) | |
tree | eb7da7cad6e94e268540f090cb1e8c1ad409620e | |
parent | 8bba1988b50fe085853e56b56d2855059da48292 (diff) | |
download | puppet-nodo-286b76cf91c60ed283abf35d51bd7bd75e21a108.tar.gz puppet-nodo-286b76cf91c60ed283abf35d51bd7bd75e21a108.tar.bz2 |
Feat: adds nodo::subsystem::fstrim
-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, + } +} |