diff options
author | Michael Scherer <misc@mageia.org> | 2012-01-15 13:41:11 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-01-15 13:41:11 +0000 |
commit | 592706382d6e717e991cacb8041da179eafa5e95 (patch) | |
tree | 04a2663f6867c572341d665af900224c2c73cc5c /modules/ii/manifests | |
parent | e12a6116d2bad80c9276c87f6d5199f660cdb2ed (diff) | |
download | puppet-592706382d6e717e991cacb8041da179eafa5e95.tar puppet-592706382d6e717e991cacb8041da179eafa5e95.tar.gz puppet-592706382d6e717e991cacb8041da179eafa5e95.tar.bz2 puppet-592706382d6e717e991cacb8041da179eafa5e95.tar.xz puppet-592706382d6e717e991cacb8041da179eafa5e95.zip |
add a custom wrapper for running ii, since it doesn't react like
a regular daemon, and doing this with simple shell command is too
tedious.
Diffstat (limited to 'modules/ii/manifests')
-rw-r--r-- | modules/ii/manifests/init.pp | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/modules/ii/manifests/init.pp b/modules/ii/manifests/init.pp index e0e9b5c7..c024bc49 100644 --- a/modules/ii/manifests/init.pp +++ b/modules/ii/manifests/init.pp @@ -14,15 +14,21 @@ class ii { $nick = $name include ii::base + # a custom wrappper is needed since ii do not fork in the + # background, and bash is not able to properly do it + local_script { "ii_$nick": + content => "ii/ii_wrapper.pl", + require => Class['ii::base'], + } service { 'ii': provider => base, - start => "su nobody -c 'nohup ii -n $nick -i /var/lib/ii/$nick -s $server'", - notify => Exec["join channel"], - require => Class['ii::base'], + start => "/usr/local/bin/ii_$nick", + notify => Exec["join channel $nick"], + require => Local_script["ii_$nick"], } - exec { "join channel": + exec { "join channel $nick": command => "echo '/j $channel' > /var/lib/ii/$nick/$server/in", user => nobody, refreshonly => true, |