diff options
author | Marc <mmontgomery@pcch.org> | 2012-08-17 09:39:52 -0400 |
---|---|---|
committer | Marc <mmontgomery@pcch.org> | 2012-08-17 09:39:52 -0400 |
commit | e78a712e1152fd8981b87a6bb035777d0256f268 (patch) | |
tree | e832d32239fbbbec9d5cb584b836a5917cf788ce /manifests/server/install.pp | |
download | puppet-samba-e78a712e1152fd8981b87a6bb035777d0256f268.tar.gz puppet-samba-e78a712e1152fd8981b87a6bb035777d0256f268.tar.bz2 |
initial commit current progress creates shares in ensures samba is installed and daemon is running, can add shares to smb.conf, and can set global variables
Diffstat (limited to 'manifests/server/install.pp')
-rw-r--r-- | manifests/server/install.pp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/server/install.pp b/manifests/server/install.pp new file mode 100644 index 0000000..6514626 --- /dev/null +++ b/manifests/server/install.pp @@ -0,0 +1,7 @@ +class samba::server::install { + + package { "samba": + ensure => installed, + } + +}
\ No newline at end of file |