-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modulesync: https, pmtignore, docker fqdns, linting, deb 9
- Loading branch information
Showing
10 changed files
with
98 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ vendor/ | |
|
||
## rspec | ||
spec/fixtures/ | ||
junit/ | ||
|
||
## Puppet module | ||
pkg/ | ||
|
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,51 @@ | ||
# This file is managed centrally by modulesync | ||
# https://github.com/theforeman/foreman-installer-modulesync | ||
|
||
## MAC OS | ||
.DS_Store | ||
|
||
## TEXTMATE | ||
*.tmproj | ||
tmtags | ||
|
||
## EMACS | ||
*~ | ||
\#* | ||
.\#* | ||
|
||
## VIM | ||
*.swp | ||
*.swo | ||
tags | ||
|
||
## Bundler | ||
Gemfile.lock | ||
.bundle | ||
vendor/ | ||
|
||
## rbenv / rvm | ||
.rbenv* | ||
.rvmrc* | ||
.ruby-* | ||
|
||
## rspec | ||
spec/fixtures/ | ||
junit/ | ||
|
||
## Puppet module | ||
pkg/ | ||
coverage/ | ||
.yardoc/ | ||
|
||
## InteliJ / RubyMine | ||
.idea | ||
|
||
## Beaker | ||
.vagrant/ | ||
log/ | ||
|
||
# Files we don't want to ship in a release | ||
CONTRIBUTING.md | ||
Gemfile | ||
Rakefile | ||
spec/ |
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
# This file is managed via modulesync | ||
# https://github.com/voxpupuli/modulesync | ||
# https://github.com/theforeman/foreman-installer-modulesync | ||
HOSTS: | ||
debian-9-x64.example.com: | ||
platform: debian-9-amd64 | ||
hypervisor: docker | ||
image: debian:9 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'apt-get update && apt-get install -y cron locales-all net-tools wget systemd-sysv' | ||
- 'rm -f /usr/sbin/policy-rc.d' | ||
- 'systemctl mask [email protected] getty-static.service' | ||
CONFIG: | ||
trace_limit: 200 | ||
masterless: true | ||
... | ||
# vim: syntax=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
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