puppet-prod/site/profiles/manifests/firstrun/cleanup.pp
Ben Vincent febd98d316 chore: cleanup yum repos
- cleanup yum repos on first run
2024-06-27 21:59:27 +10:00

10 lines
226 B
Puppet

# profiles::firstrun::cleanup
class profiles::firstrun::cleanup {
# remove all the exisiting yum repos
exec {'cleanup_yum_repos':
command => 'rm -f /etc/yum.repos.d/*.repo',
path => ['/bin', '/usr/bin'],
}
}