This repository has been archived by the owner on Jun 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from WikipediaLibrary/dev-puppet-4.10
Dev puppet 4.10
- Loading branch information
Showing
10 changed files
with
90 additions
and
66 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 was deleted.
Oops, something went wrong.
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,21 @@ | ||
--- | ||
# These variables set config values for OS and package configuration as well as | ||
# the app. If you don't know what they are then you don't need to change them. | ||
twlight::params::mysqlroot_pw: 'vagrant' | ||
twlight::params::mysqltwlight_pw: 'vagrant' | ||
twlight::params::restore_file: '/vagrant/backup/twlight.tar.gz' | ||
twlight::params::backup_dir: '/vagrant/backup' | ||
twlight::params::servername: 'twlight.vagrant.localdomain' | ||
twlight::params::serverport: '80' | ||
twlight::params::externalport: '80' | ||
twlight::params::environment: 'local' | ||
|
||
# These variables set config values for the app. | ||
# If you don't know what they are then you don't need to change them. | ||
twlight::params::secretkey: 'vagrant' | ||
twlight::params::allowedhosts: "['twlight.vagrant.localdomain']" | ||
twlight::params::baseurl: "http://${servername}/" | ||
twlight::params::oauth_provider_url: "https://meta.wikimedia.org/w/index.php" | ||
|
||
classes: | ||
- twlight |
File renamed without changes.
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,3 @@ | ||
node 'twlight.vagrant.localdomain' { | ||
include twlight | ||
} |
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,16 @@ | ||
--- | ||
version: 5 | ||
defaults: | ||
datadir: /vagrant/puppet/data | ||
data_hash: yaml_data | ||
hierarchy: | ||
- name: "Per-node data (yaml version)" | ||
path: "nodes/%{trusted.certname}.yaml" # Add file extension. | ||
# Omitting datadir and data_hash to use defaults. | ||
|
||
- name: "Other YAML hierarchy levels" | ||
paths: # Can specify an array of paths instead of one. | ||
- "location/%{facts.whereami}/%{facts.group}.yaml" | ||
- "groups/%{facts.group}.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Ignore everything in this directory | ||
* | ||
# Except this file | ||
!.gitignore |
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,2 @@ | ||
[main] | ||
environment = local |