Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
Update to use indigo 2 repos
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Jun 5, 2017
1 parent 2ae0f61 commit f411172
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
10 changes: 7 additions & 3 deletions ansible_install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@
action: yum pkg=libselinux-python state=installed
when: ansible_os_family == "RedHat"

- name: Ubuntu install indigo list
- name: Ubuntu 14 install indigo 1 list
get_url: url=http://repo.indigo-datacloud.eu/repos/1/indigo1-ubuntu14_04.list dest=/etc/apt/sources.list.d/indigo1-ubuntu14_04.list
when: ansible_distribution == "Ubuntu"
when: ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "14"

- name: Ubuntu 16 install indigo 2 list
get_url: url=http://repo.indigo-datacloud.eu/repos/2/indigo2-ubuntu16_04.list dest=/etc/apt/sources.list.d/indigo2-ubuntu16_04.list
when: ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "16"

- apt_key: url=http://repo.indigo-datacloud.eu/repository/RPM-GPG-KEY-indigodc state=present
when: ansible_distribution == "Ubuntu"
Expand All @@ -32,7 +36,7 @@
when: ansible_distribution == "Ubuntu"

- name: RH indigo repos
get_url: url=http://repo.indigo-datacloud.eu/repos/1/indigo1.repo dest=/etc/yum.repos.d/indigo1.repo
get_url: url=http://repo.indigo-datacloud.eu/repos/2/indigo2.repo dest=/etc/yum.repos.d/indigo2.repo
when: ansible_os_family == "RedHat"

- rpm_key: state=present key=http://repo.indigo-datacloud.eu/repository/RPM-GPG-KEY-indigodc
Expand Down
8 changes: 4 additions & 4 deletions doc/gitbook/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ $ yum install epel-release
```

Then you have to enable the INDIGO - DataCloud packages repositories. See full instructions
[here](https://indigo-dc.gitbooks.io/indigo-datacloud-releases/content/generic_installation_and_configuration_guide_1.html#id4). Briefly you have to download the repo file from [INDIGO SW Repository](http://repo.indigo-datacloud.eu/repos/1/indigo1.repo) in your /etc/yum.repos.d folder.
[here](https://indigo-dc.gitbooks.io/indigo-datacloud-releases/content/generic_installation_and_configuration_guide_2.html#id4). Briefly you have to download the repo file from [INDIGO SW Repository](http://repo.indigo-datacloud.eu/repos/2/indigo2.repo) in your /etc/yum.repos.d folder.

```sh
$ cd /etc/yum.repos.d
$ wget http://repo.indigo-datacloud.eu/repos/1/indigo1.repo
$ wget http://repo.indigo-datacloud.eu/repos/2/indigo2.repo
```

And then install the GPG key for the INDIGO repository:
Expand All @@ -129,11 +129,11 @@ $ yum install IM
### 1.3.3 FROM DEB

You have to enable the INDIGO - DataCloud packages repositories. See full instructions
[here](https://indigo-dc.gitbooks.io/indigo-datacloud-releases/content/generic_installation_and_configuration_guide_1.html#id4). Briefly you have to download the list file from [INDIGO SW Repository](http://repo.indigo-datacloud.eu/repos/1/indigo1-ubuntu14_04.list) in your /etc/apt/sources.list.d folder.
[here](https://indigo-dc.gitbooks.io/indigo-datacloud-releases/content/generic_installation_and_configuration_guide_2.html#id4). Briefly you have to download the list file from [INDIGO SW Repository](http://repo.indigo-datacloud.eu/repos/2/indigo2-ubuntu16_04.list) in your /etc/apt/sources.list.d folder.

```sh
$ cd /etc/apt/sources.list.d
$ wget http://repo.indigo-datacloud.eu/repos/1/indigo1-ubuntu14_04.list
$ wget http://repo.indigo-datacloud.eu/repos/2/indigo2-ubuntu16_04.list
```

And then install the GPG key for INDIGO the repository:
Expand Down

0 comments on commit f411172

Please sign in to comment.