Puppet Class: yum::repo::elastix
- Defined in:
- manifests/repo/elastix.pp
Overview
Class: yum::repo::elastix
This class installs the elastix repo
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'manifests/repo/elastix.pp', line 5
class yum::repo::elastix {
yum::managed_yumrepo { 'elastix-base':
descr => 'Base RPM Repository for Elastix',
mirrorlist => 'http://mirror.elastix.org/?release=2&arch=$basearch&repo=base',
enabled => 1,
gpgcheck => 1,
gpgkey => 'http://repo.elastix.org/elastix/RPM-GPG-KEY-Elastix',
autokeyimport => 'yes',
}
yum::managed_yumrepo { 'elastix-updates':
descr => 'Updates RPM Repository for Elastix',
mirrorlist => 'http://mirror.elastix.org/?release=2&arch=$basearch&repo=updates',
enabled => 1,
gpgcheck => 1,
gpgkey => 'http://repo.elastix.org/elastix/RPM-GPG-KEY-Elastix',
}
yum::managed_yumrepo { 'elastix-beta':
descr => 'Beta RPM Repository for Elastix',
mirrorlist => 'http://mirror.elastix.org/?release=2&arch=$basearch&repo=beta',
enabled => 0,
gpgcheck => 1,
gpgkey => 'http://repo.elastix.org/elastix/RPM-GPG-KEY-Elastix',
}
yum::managed_yumrepo { 'elastix-extras':
descr => 'Extras RPM Repository for Elastix',
mirrorlist => 'http://mirror.elastix.org/?release=2&arch=$basearch&repo=extras',
enabled => 1,
gpgcheck => 1,
gpgkey => 'http://repo.elastix.org/elastix/RPM-GPG-KEY-Elastix',
}
yum::managed_yumrepo { 'elastix-commercial-addons':
descr => 'Commercial-Addons RPM Repository for Elastix',
mirrorlist => 'http://mirror.elastix.org/?release=2&arch=$basearch&repo=commercial_addons',
enabled => 1,
gpgcheck => 1,
gpgkey => 'http://repo.elastix.org/elastix/RPM-GPG-KEY-Elastix',
}
yum::managed_yumrepo { 'elastix-LowayResearch':
descr => 'Loway Research Yum Repository',
baseurl => 'http://yum.loway.ch/RPMS',
enabled => 1,
gpgcheck => 0,
}
}
|