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 was merged in pull request #32.
This commit is contained in:
2024-06-14 23:13:21 +10:00
@@ -14,4 +14,11 @@ class profiles::cobbler::service inherits profiles::cobbler::params {
enable => true,
require => File['/etc/httpd/conf.d/ssl.conf'],
}
# ensure tftp is running
service {'tftp':
ensure => 'running',
enable => true,
require => Package['cobbler'],
}
}