diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2022-01-08 11:22:55 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2022-01-08 11:22:55 -0300 |
commit | 8bba1988b50fe085853e56b56d2855059da48292 (patch) | |
tree | aba29cbac90695a23e01e60b994a94628d1d36db | |
parent | 1e652180e6273dfd5fffce70e6913f7f65a87cbc (diff) | |
download | puppet-nodo-8bba1988b50fe085853e56b56d2855059da48292.tar.gz puppet-nodo-8bba1988b50fe085853e56b56d2855059da48292.tar.bz2 |
Fix: removes revelation at nodo::utils::security::gui
-rw-r--r-- | manifests/base/host.pp | 1 | ||||
-rw-r--r-- | manifests/utils/security/gui.pp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/manifests/base/host.pp b/manifests/base/host.pp index 6e71f98..148ebc8 100644 --- a/manifests/base/host.pp +++ b/manifests/base/host.pp @@ -5,6 +5,7 @@ class nodo::base::host { include nodo::subsystem::firewire include nodo::subsystem::sysctl include nodo::subsystem::resolver + include nodo::subsystem::fstrim include nodo::utils::physical include nodo::utils::storage::crypto diff --git a/manifests/utils/security/gui.pp b/manifests/utils/security/gui.pp index f5a0600..617922d 100644 --- a/manifests/utils/security/gui.pp +++ b/manifests/utils/security/gui.pp @@ -2,7 +2,6 @@ class nodo::utils::security::gui ( $ensure = 'installed', ) { package { [ - 'revelation', 'keepassxc', 'pinentry-gtk2', ]: @@ -22,6 +21,7 @@ class nodo::utils::security::gui ( # https://askubuntu.com/questions/1011431/keepassx-vs-keepassxc package { [ 'keepassx', + 'revelation', ]: ensure => absent, } |