-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: refactor package management #102
Closed
LongLiveCHIEF
wants to merge
7
commits into
puppetlabs:master
from
LongLiveCHIEF:update-package-management
+103
−461
Closed
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
a457c60
configure default repositories for docker
LongLiveCHIEF 6bd5aa6
add default locations for Debian & RedHat
LongLiveCHIEF 02c9443
remove package_ params.pp vars
LongLiveCHIEF ddf098c
fix syntax
LongLiveCHIEF 0cebea6
correct variable names
LongLiveCHIEF 7927ede
command and daemon command configuration
LongLiveCHIEF 325297e
syntax correction
LongLiveCHIEF File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
; This file is for unifying the coding style for different editors and IDEs. | ||
; Plugins are available for notepad++, emacs, vim, gedit, | ||
; textmate, visual studio, and more. | ||
; | ||
; See http://editorconfig.org for details. | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
docker::docker_daemon_command: 'docker daemon' |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
docker::package_repository: | ||
'docker_repo': | ||
location: "https://download.docker.com/linux/%{facts.os.name}" | ||
release: "${facts.os.distro.codename}" | ||
repos: 'stable' | ||
key: | ||
source: "https://download.docker.com/linux/%{facts.os.name" | ||
include: | ||
deb: true | ||
src: false |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
docker::prerequired_packages: | ||
- 'linux-image-extra-virtual' | ||
- "linux-image-extra-%{facts.os.distro.id}" | ||
|
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
docker::prerequired_packages: | ||
- 'cgroup-lite' | ||
- 'apparmor' |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
docker::daemon_command: 'dockerd' | ||
docker::package_repository: | ||
'docker_repo': | ||
ensure: 'present' | ||
assumeyes: true | ||
enabled: true | ||
baseurl: 'https://download.docker.com/linux/centos/7/x86_64/stable' | ||
gpgkey: 'https://download.docker.com/linux/centos/gpg' | ||
repo_gpgcheck: true | ||
sslverify: true |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
version: 4 | ||
datadir: data | ||
hierarchy: | ||
- name: "Default docker configuration data" | ||
backend: yaml | ||
paths: | ||
- "os/%{facts.os.family}/%{facts.os.name}/%{facts.os.release.major.minor}.yaml" | ||
- "os/%{facts.os.family}/%{facts.os.name}.yaml" | ||
- "os/%{facts.os.family}/%{facts.os.distro.codename}.yaml" | ||
- "os/%{facts.os.family}.yaml" | ||
- "common.yaml" |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs a closing brace