diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2022-01-08 16:27:23 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2022-01-08 16:27:23 -0300 |
commit | 9c8dd49491117860ae404b3837bc904d0f3df5d8 (patch) | |
tree | 323eae01654bf40ab56306cb9e46e25c90ab8a2e | |
parent | 7361651e9d25b0a6b32574e852e49ad34abdcbd5 (diff) | |
download | puppet-nodo-9c8dd49491117860ae404b3837bc904d0f3df5d8.tar.gz puppet-nodo-9c8dd49491117860ae404b3837bc904d0f3df5d8.tar.bz2 |
Fix: nodo::subsystem::fstrim: ensure that the service is running
-rw-r--r-- | manifests/subsystem/fstrim.pp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/manifests/subsystem/fstrim.pp b/manifests/subsystem/fstrim.pp index 1086dea..954efca 100644 --- a/manifests/subsystem/fstrim.pp +++ b/manifests/subsystem/fstrim.pp @@ -2,6 +2,7 @@ class nodo::subsystem::fstrim( $enable = true, ) { service { 'fstrim.timer': + ensure => 'running', enable => true, } } |