Skip to content

Instantly share code, notes, and snippets.

@kplimack
Created April 19, 2017 22:04
Show Gist options
  • Save kplimack/47ee701d3f97fe85d1f3d42c1fa2e865 to your computer and use it in GitHub Desktop.
Save kplimack/47ee701d3f97fe85d1f3d42c1fa2e865 to your computer and use it in GitHub Desktop.
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