10 lines
226 B
Puppet
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'],
|
|
}
|
|
}
|