diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-04-03 00:15:27 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-04-03 00:15:27 -0300 |
commit | 86443abe71d218b125dc8f3ad887b71c83c94798 (patch) | |
tree | 0b7abddaac201799827a1154e9cf062d0b446af5 /manifests/removable.pp | |
parent | 26631255143bbbf90b57c4f9cd033a1209413f23 (diff) | |
download | puppet-nodo-86443abe71d218b125dc8f3ad887b71c83c94798.tar.gz puppet-nodo-86443abe71d218b125dc8f3ad887b71c83c94798.tar.bz2 |
Adding nodo::removable
Diffstat (limited to 'manifests/removable.pp')
-rw-r--r-- | manifests/removable.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/removable.pp b/manifests/removable.pp new file mode 100644 index 0000000..2dd994c --- /dev/null +++ b/manifests/removable.pp @@ -0,0 +1,11 @@ +class nodo::removable inherits nodo::desktop { + # fstab + File { "/etc/fstab": + source => "puppet://$server/modules/nodo/etc/fstab/removable", + } + + # crypttab + File { "/etc/crypttab": + source => "puppet://$server/modules/nodo/etc/crypttab/removable", + } +} |