Puppet Class: alkivi_base::service

Defined in:
manifests/service.pp

Overview



1
2
3
4
5
6
7
8
9
10
11
12
# File 'manifests/service.pp', line 1

class alkivi_base::service () {
  service { 'networking':
    hasrestart => true,
  }

  service { 'alkivi-iptables':
    hasrestart => true,
    hasstatus  => false,
    status     => 'iptables -L',
    restart    => '/etc/init.d/alkivi-iptables restart',
  }
}