Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.playbook
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
slapos.playbook
Commits
2fa7bf42
Commit
2fa7bf42
authored
May 22, 2015
by
Rafael Monnerat
👻
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include debian 8 support
parent
2f7ab90d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
playbook/roles/repository/tasks/main.yml
playbook/roles/repository/tasks/main.yml
+8
-0
No files found.
playbook/roles/repository/tasks/main.yml
View file @
2fa7bf42
-
name
:
Install Debian 8 repository key
apt_key
:
url={{ base_open_build_url }}/Debian_8.0/Release.key state=present
when
:
ansible_distribution == "Debian" and ansible_distribution_major_version == "8"
-
name
:
Install Debian 7 repository key
apt_key
:
url={{ base_open_build_url }}/Debian_7.0/Release.key state=present
when
:
ansible_distribution == "Debian" and ansible_distribution_major_version == "7"
...
...
@@ -7,6 +11,10 @@
apt_key
:
url={{ base_open_build_url }}/Debian_6.0/Release.key state=present
when
:
ansible_distribution == "Debian" and ansible_distribution_major_version == "6"
-
name
:
Install Debian 8 repository
apt_repository
:
repo='deb {{ base_open_build_url }}/Debian_8.0/ ./' state=present
when
:
ansible_distribution == "Debian" and ansible_distribution_major_version == "8"
-
name
:
Install Debian 7 repository
apt_repository
:
repo='deb {{ base_open_build_url }}/Debian_7.0/ ./' state=present
when
:
ansible_distribution == "Debian" and ansible_distribution_major_version == "7"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment