Merge pull request 'feat: ensure tftpd started on cobbler' (#32) from neoloc/tftpservice into develop

Reviewed-on: https://git.query.consul/unkinben/puppet-prod/pulls/32
This commit is contained in:
Ben Vincent 2024-06-14 23:13:21 +10:00
commit 1b5e6120e7

View File

@ -14,4 +14,11 @@ class profiles::cobbler::service inherits profiles::cobbler::params {
enable => true, enable => true,
require => File['/etc/httpd/conf.d/ssl.conf'], require => File['/etc/httpd/conf.d/ssl.conf'],
} }
# ensure tftp is running
service {'tftp':
ensure => 'running',
enable => true,
require => Package['cobbler'],
}
} }