diff options
Diffstat (limited to 'manifests/appliance.pp')
-rw-r--r-- | manifests/appliance.pp | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/manifests/appliance.pp b/manifests/appliance.pp index 94da45b..c8e2cc7 100644 --- a/manifests/appliance.pp +++ b/manifests/appliance.pp @@ -2,22 +2,12 @@ class nodo::appliance inherits nodo::physical { include sysctl::appliance # fstab - file { "/etc/fstab": - source => "puppet://$appliance/modules/nodo/etc/fstab/appliance", - owner => "root", - group => "root", - mode => 0644, - ensure => present, - notify => Exec['update-initramfs'], + class { 'fstab': + type => 'appliance', } # crypttab - file { "/etc/crypttab": - source => "puppet://$appliance/modules/nodo/etc/crypttab/appliance", - owner => "root", - group => "root", - mode => 0644, - ensure => present, - notify => Exec['update-initramfs'], + class { 'crypttab': + type => 'appliance', } } |