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

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