From 55cc893077e41a98e71707667b170901e2d4f1bd Mon Sep 17 00:00:00 2001 From: Antoine Beaupre Date: Tue, 21 Jun 2011 23:20:12 -0400 Subject: add inotify class to start reprepro watcher on boot --- manifests/init.pp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'manifests') diff --git a/manifests/init.pp b/manifests/init.pp index 5879991..9058ca3 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -139,3 +139,29 @@ class reprepro { # setup needeed lines in apache site config file } + +class reprepro::inotify inherits reprepro { + file { "/etc/init.d/reprepro": + owner => root, group => root, mode => 0755, + source => "puppet://$server/modules/reprepro/inoticoming.init"; + } + file { "/etc/default/reprepro": + ensure => present, + owner => root, group => root, mode => 0755, + content => template('reprepro/inoticoming.default.erb'), + } + + exec { "reprepro_init_script": + command => "/usr/sbin/update-rc.d reprepro defaults", + unless => "/bin/ls /etc/rc3.d/ | /bin/grep reprepro", + require => File["/etc/init.d/reprepro"], + } + service { "reprepro": + ensure => "running", + pattern => "/inoticoming.*reprepro.*processincoming/", + hasstatus => false, + require => [File["/etc/default/reprepro"], + Exec["reprepro_init_script"], + File["/etc/init.d/reprepro"] ], + } +} -- cgit v1.2.3