summaryrefslogtreecommitdiff
path: root/manifests/centos/six.pp
blob: bce84bf4d1c38b389fafd0e7c2781855098e77bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class strongswan::centos::six inherits strongswan::base {
  Service['ipsec']{
    name => 'strongswan',
  }
  file{'/etc/selinux/strongswan':
    content => "config='/etc/strongswan/strongswan.conf'\n",
    notify  => Service['ipsec'],
    owner   => 'root',
    group   => 0,
    mode    => 0644;
  }
}