-
-
Save kplimack/47ee701d3f97fe85d1f3d42c1fa2e865 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum_repository 'foreman' do | |
baseurl 'http://yum.theforeman.org/releases/latest/el7/x86_64/' | |
gpgcheck false | |
action :create | |
notifies :makecache, 'yum_repository[foreman]' | |
end | |
yum_repository 'sclo-rh' do | |
baseurl 'http://mirror.centos.org/centos/7/sclo/x86_64/rh/' | |
gpgcheck false | |
action :create | |
notifies :makecache, 'yum_repository[sclo-rh]' | |
end | |
yum_repository 'sclo' do | |
baseurl 'http://mirror.centos.org/centos/7/sclo/x86_64/sclo/' | |
gpgcheck false | |
action :create | |
notifies :makecache, 'yum_repository[sclo]' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment