Require that the service xinetd should be running

```
Error: /Stage[main]/Cloud::Database::Sql/Exec[reload_xinetd]: Failed to call refresh: /usr/bin/pkill -F /var/run/xinetd.pid --signal HUP returned 1 instead of one of [0]
Error: /Stage[main]/Cloud::Database::Sql/Exec[reload_xinetd]: /usr/bin/pkill -F /var/run/xinetd.pid --signal HUP returned 1 instead of one of [0]
```

close #91
This commit is contained in:
Yanis Guenane
2014-01-29 09:47:25 -05:00
parent db92fe1440
commit 5dbe176b30

View File

@@ -249,6 +249,7 @@ class cloud::database::sql (
exec{ 'reload_xinetd':
command => '/usr/bin/pkill -F /var/run/xinetd.pid --signal HUP',
refreshonly => true,
require => Service['xinetd'],
}