-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christian Mague
committed
Feb 7, 2018
1 parent
d126f2e
commit bba3f25
Showing
7 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
# Class: jenkins::apt_repo | ||
# =========================== | ||
class jenkins::apt_repo inherits jenkins { | ||
class jenkins::apt_repo { | ||
if $jenkins::manage_apt_repo { | ||
include ::apt | ||
apt::source { 'jenkins-ci': | ||
location => $jenkins::repo_url, | ||
release => 'binary/', | ||
repos => '', | ||
key => { | ||
id => $jenkins::repo_key_id, | ||
source => $jenkins::repo_key_source, | ||
} | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Class: jenkins::configure | ||
# =========================== | ||
class jenkins::configure inherits jenkins { | ||
class jenkins::configure { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Class: jenkins::install | ||
# =========================== | ||
class jenkins::install inherits jenkins { | ||
class jenkins::install { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Class: jenkins::service | ||
# =========================== | ||
class jenkins::service inherits jenkins { | ||
class jenkins::service { | ||
|
||
} |