blob: 4be46d815094b024b60b67a440f781052f6bdb0a (
plain)
1
2
3
4
5
6
7
|
class ekeyd::client::centos inherits ekeyd::client::base {
file{'/etc/sysconfig/egd-linux':
content => "DAEMON_HOST=${ekeyd::client::ekeyd_host}\n",
notify => Service['egd-linux'],
owner => root, group => 0, mode => 0644;
}
}
|