feat: ensure tftpd started on cobbler #32

Merged
unkinben merged 1 commits from neoloc/tftpservice into develop 2024-06-14 23:13:22 +10:00
Showing only changes of commit 82ce3ed4d7 - Show all commits

View File

@ -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'],
}
}