Skip to content
Snippets Groups Projects
Commit 574d56e9 authored by Karl Kornel's avatar Karl Kornel
Browse files

xinetd: Remove inetd before installation

parent 90e91b36
No related branches found
No related tags found
No related merge requests found
# Our default inetd system, used by both Red Hat and Debian.
class base::xinetd {
package { 'xinetd': ensure => present }
# Make sure conflicting inetd packages are purged
package {
'openbsd-inetd':
ensure => absent;
'xinetd':
ensure => present,
require => Package['openbsd-inetd'];
}
# Ensure service is running. We have a custom restart action because we
# had problems with Puppet starting or restarting xinetd with a broken
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment