summaryrefslogtreecommitdiffstats
path: root/modules/syncthing
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-11-15 01:27:47 -0500
committerJesse Luehrs <doy@tozt.net>2018-11-15 01:27:47 -0500
commitcb4c28dbc2f28cef38a26d8572c8235baea4ee5a (patch)
tree2866b8f28f9d6d6fdbffd7afb8a58bc9a8d4ec2f /modules/syncthing
parent8806ea70f7ef15eeb86ff5648eaf845326350dcf (diff)
downloadpuppet-tozt-cb4c28dbc2f28cef38a26d8572c8235baea4ee5a.tar.gz
puppet-tozt-cb4c28dbc2f28cef38a26d8572c8235baea4ee5a.zip
add dependency
Diffstat (limited to 'modules/syncthing')
-rw-r--r--modules/syncthing/manifests/user.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/syncthing/manifests/user.pp b/modules/syncthing/manifests/user.pp
index dcc1790..5987f6f 100644
--- a/modules/syncthing/manifests/user.pp
+++ b/modules/syncthing/manifests/user.pp
@@ -3,6 +3,7 @@ define syncthing::user {
service { "syncthing@$name":
enable => true,
- ensure => running;
+ ensure => running,
+ require => Class['syncthing'];
}
}