summaryrefslogtreecommitdiffstats
path: root/modules/tailscale/manifests/init.pp
blob: 0b332097671dbc338c0ff39f215fb2990ec59d7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class tailscale {
  package { "tailscale":
    ensure => installed;
  }

  service { "tailscaled":
    ensure => running,
    enable => true,
    require => Package['tailscale'];
  }
}