summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-11-15 23:49:13 -0500
committerJesse Luehrs <doy@tozt.net>2018-11-15 23:49:13 -0500
commit17838916fbee73426e40dbfb562fced97b67b19a (patch)
tree5f2394fb5c36bd2c95291d5e9154a644ac99ea57 /modules
parentb7fae4bde557809f0ea9bc6552e1932afd857d63 (diff)
downloadpuppet-tozt-17838916fbee73426e40dbfb562fced97b67b19a.tar.gz
puppet-tozt-17838916fbee73426e40dbfb562fced97b67b19a.zip
more dependencies
Diffstat (limited to 'modules')
-rw-r--r--modules/partofme/manifests/filesharing.pp6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/partofme/manifests/filesharing.pp b/modules/partofme/manifests/filesharing.pp
index 86ebb72..4719132 100644
--- a/modules/partofme/manifests/filesharing.pp
+++ b/modules/partofme/manifests/filesharing.pp
@@ -3,6 +3,10 @@ class partofme::filesharing {
file { '/etc/samba/smb.conf':
source => 'puppet:///modules/partofme/smb.conf',
- before => Class['samba'];
+ require => Package['samba'],
+ before => [
+ Service['smb'],
+ Service['nmb'],
+ ];
}
}