diff options
Diffstat (limited to 'manifests/physical.pp')
-rw-r--r-- | manifests/physical.pp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/manifests/physical.pp b/manifests/physical.pp deleted file mode 100644 index c2d451d..0000000 --- a/manifests/physical.pp +++ /dev/null @@ -1,21 +0,0 @@ -class nodo::physical inherits nodo::host { - class { [ 'nodo::subsystem::ups', 'smartmontools' ]: } - - # SMART monitoring - $munin = hiera('nodo::host::use_munin', True) - if $munin == true { - include munin::plugins::smart - munin::plugin { 'smart_sda': - ensure => 'smart_', - config => "user root\ngroup disk", - } - } - - # Entropy key - $ekey_masterkey = hiera('nodo::physical::ekey_masterkey', '') - if $ekey_masterkey != '' { - class { "ekeyd": - ekeyd_masterkey => $ekey_masterkey, - } - } -} |