Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
configuration
Commits
b82478eb
Commit
b82478eb
authored
Aug 04, 2016
by
Kevin Falcone
Committed by
GitHub
Aug 04, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3289 from edx/jibsheet/ansible-compat
The apt syntax which handles urls in deb: wasn't added until 2.1
parents
868bc0d7
33743ed2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
playbooks/roles/jenkins_master/tasks/main.yml
+6
-2
No files found.
playbooks/roles/jenkins_master/tasks/main.yml
View file @
b82478eb
...
@@ -37,9 +37,13 @@
...
@@ -37,9 +37,13 @@
owner
:
"
{{
jenkins_user
}}"
owner
:
"
{{
jenkins_user
}}"
group
:
"
{{
jenkins_group
}}"
group
:
"
{{
jenkins_group
}}"
-
name
:
Install Jenkins package from the internet
# TODO in Ansible 2.1 we can do apt: deb="{{ jenkins_deb_url }}"
-
name
:
download Jenkins package
get_url
:
url="{{ jenkins_deb_url }}" dest="/tmp/{{ jenkins_deb }}"
-
name
:
install Jenkins package
apt
:
apt
:
deb
:
"
{{
jenkins_deb_url
}}"
deb
:
"
/tmp/{{
jenkins_deb
}}"
-
name
:
Stop Jenkins
-
name
:
Stop Jenkins
service
:
service
:
...
...
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