summaryrefslogtreecommitdiffstats
path: root/modules/syncthing/manifests/user.pp
blob: 5987f6f01d7e11116ec36f6b1b162082eb94fcbc (plain) (blame)
1
2
3
4
5
6
7
8
9
define syncthing::user {
  include syncthing

  service { "syncthing@$name":
    enable => true,
    ensure => running,
    require => Class['syncthing'];
  }
}