diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-09-18 19:52:43 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-09-18 19:52:43 -0300 |
commit | f48a285b1c5b79937116aefa46d28f87a9cae3a9 (patch) | |
tree | 9272bfc1e97ca6e8c15bc5889e40df218696fc66 | |
parent | 6884f3c45e1e8ac24e8c2c41d1617442586689fe (diff) | |
download | puppet-nodo-f48a285b1c5b79937116aefa46d28f87a9cae3a9.tar.gz puppet-nodo-f48a285b1c5b79937116aefa46d28f87a9cae3a9.tar.bz2 |
Managing removeable media folder at nodo::physical
-rw-r--r-- | manifests/physical.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/manifests/physical.pp b/manifests/physical.pp index 65e66ab..a16f64a 100644 --- a/manifests/physical.pp +++ b/manifests/physical.pp @@ -54,4 +54,10 @@ class nodo::physical inherits nodo { ensure => "smart_", config => "user root\ngroup disk", } + + # Removeable media folder + file { "/media/usb": + ensure => directory, + mode => 0755, + } } |