Skip to content
Snippets Groups Projects
Commit 55b4d36e authored by Eesaan Atluri's avatar Eesaan Atluri
Browse files

Add yum repo files for pkg installs.

parent 0e0411d7
No related branches found
No related tags found
No related merge requests found
[TurboVNC]
name=TurboVNC official RPMs
baseurl=https://sourceforge.net/projects/turbovnc/files
gpgcheck=1
gpgkey=https://sourceforge.net/projects/turbovnc/files/VGL-GPG-KEY
https://sourceforge.net/projects/turbovnc/files/VGL-GPG-KEY-1024
enabled=1
[Ceph]
priority=1
name=Ceph $basearch
baseurl=https://download.ceph.com/rpm-octopus/el7/$basearch
enabled=1
gpgcheck=1
gpgkey=https://download.ceph.com/keys/release.asc
[Ceph-noarch]
priority=1
name=Ceph noarch
baseurl=https://download.ceph.com/rpm-octopus/el7/noarch
enabled=1
gpgcheck=1
gpgkey=https://download.ceph.com/keys/release.asc
[Ceph-source]
priority=1
name=Ceph SRPMS
baseurl=https://download.ceph.com/rpm-octopus/el7/SRPMS
enabled=1
gpgcheck=1
gpgkey=https://download.ceph.com/keys/release.asc
[dell-system-update_independent]
name=dell-system-update_independent
baseurl=https://linux.dell.com/repo/hardware/dsu/os_independent/
gpgcheck=1
gpgkey=https://linux.dell.com/repo/pgp_pubkeys/0x756ba70b1019ced6.asc
https://linux.dell.com/repo/pgp_pubkeys/0x1285491434D8786F.asc
https://linux.dell.com/repo/pgp_pubkeys/0xca77951d23b66a9d.asc
https://linux.dell.com/repo/pgp_pubkeys/0x3CA66B4946770C59.asc
enabled=1
exclude=dell-system-update*.i386
[dell-system-update_dependent]
name=dell-system-update_dependent
mirrorlist=https://linux.dell.com/repo/hardware/dsu/mirrors.cgi?osname=el$releasever&basearch=$basearch&native=1
gpgcheck=1
gpgkey=https://linux.dell.com/repo/pgp_pubkeys/0x756ba70b1019ced6.asc
https://linux.dell.com/repo/pgp_pubkeys/0x1285491434D8786F.asc
https://linux.dell.com/repo/pgp_pubkeys/0xca77951d23b66a9d.asc
https://linux.dell.com/repo/pgp_pubkeys/0x3CA66B4946770C59.asc
enabled=1
[elastic-7.x]
name=Elastic repository for 7.x packages
baseurl=https://artifacts.elastic.co/packages/7.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=1
autorefresh=1
type=rpm-md
[nux-dextop]
name=Nux.Ro RPMs for general desktop use
baseurl=http://li.nux.ro/download/nux/dextop/el7/$basearch/ http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/$basearch/
enabled=1
gpgcheck=1
gpgkey=http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro
protect=0
[nux-dextop-testing]
name=Nux.Ro RPMs for general desktop use - testing
baseurl=http://li.nux.ro/download/nux/dextop-testing/el7/$basearch/
enabled=0
gpgcheck=1
gpgkey=http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro
protect=0
...@@ -22,11 +22,18 @@ ...@@ -22,11 +22,18 @@
state: disabled state: disabled
- name: Copy cm.repo into place (consider making this a template) - name: Copy cm.repo into place (consider making this a template)
ansible.builtin.copy: ansible.builtin.copy:
src: cm.repo src: "{{ item }}"
dest: /etc/yum.repos.d/cm.repo dest: "/etc/yum.repos.d/{{ item }}"
owner: root owner: root
group: root group: root
mode: 0644 mode: 0644
loop:
- cm.repo
- ceph.repo
- dell-system-update.repo
- elastic.repo
- nux-dextop.repo
- TurboVNC.repo
- name: Copy CM repo GPG key - name: Copy CM repo GPG key
ansible.builtin.copy: ansible.builtin.copy:
src: RPM-GPG-KEY-cm src: RPM-GPG-KEY-cm
...@@ -57,6 +64,7 @@ ...@@ -57,6 +64,7 @@
- nss-pam-ldapd - nss-pam-ldapd
- ruby - ruby
- python3 - python3
- centos-release-openstack-rocky
state: present state: present
- name: Install system packages - name: Install system packages
ansible.builtin.yum: ansible.builtin.yum:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment