Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.package
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Nicolas Wavrant
slapos.package
Commits
a9609575
Commit
a9609575
authored
Mar 23, 2016
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playbook: Include support for Linuxmint 17.2
parent
9eea43a7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
playbook/roles/package/tasks/main.yml
playbook/roles/package/tasks/main.yml
+1
-1
playbook/roles/repository/tasks/main.yml
playbook/roles/repository/tasks/main.yml
+8
-0
No files found.
playbook/roles/package/tasks/main.yml
View file @
a9609575
-
name
:
Install packages using apt
-
name
:
Install packages using apt
apt
:
name={{ package_name }} state={{ package_state }} update_cache=yes cache_valid_time=3600
apt
:
name={{ package_name }} state={{ package_state }} update_cache=yes cache_valid_time=3600
when
:
ansible_os_family == "Debian"
when
:
ansible_os_family == "Debian"
or ansible_os_family == "Linuxmint"
-
name
:
Install re6stnet on CentOS
-
name
:
Install re6stnet on CentOS
yum
:
name={{ package_name }} state={{ package_state }} update_cache=yes
yum
:
name={{ package_name }} state={{ package_state }} update_cache=yes
...
...
playbook/roles/repository/tasks/main.yml
View file @
a9609575
...
@@ -31,6 +31,14 @@
...
@@ -31,6 +31,14 @@
apt_repository
:
repo='deb {{ base_open_build_url }}/xUbuntu_14.04/ ./' state=present
apt_repository
:
repo='deb {{ base_open_build_url }}/xUbuntu_14.04/ ./' state=present
when
:
ansible_distribution == "Ubuntu" and ansible_distribution_version == "14.04"
when
:
ansible_distribution == "Ubuntu" and ansible_distribution_version == "14.04"
-
name
:
Install Ubuntu 14.04 repository key (Linuxmint 17.2)
apt_key
:
url={{ base_open_build_url }}/xUbuntu_14.04/Release.key state=present
when
:
ansible_distribution == "Linuxmint" and ansible_distribution_version == "17.2"
-
name
:
Install Ubuntu 14.04 repository (Linuxmint 17.2)
apt_repository
:
repo='deb {{ base_open_build_url }}/xUbuntu_14.04/ ./' state=present
when
:
ansible_distribution == "Linuxmint" and ansible_distribution_version == "17.2"
-
name
:
Install Ubuntu 15.04 repository key
-
name
:
Install Ubuntu 15.04 repository key
apt_key
:
url={{ base_open_build_url }}/xUbuntu_15.04/Release.key state=present
apt_key
:
url={{ base_open_build_url }}/xUbuntu_15.04/Release.key state=present
when
:
ansible_distribution == "Ubuntu" and ansible_distribution_version == "15.04"
when
:
ansible_distribution == "Ubuntu" and ansible_distribution_version == "15.04"
...
...
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