git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/.config/flake8
diff options
context:
space:
mode:
Diffstat (limited to '.config/flake8')
0 files changed, 0 insertions, 0 deletions
a0779aef7c2fd3d88dbcb699ecf4619326ff8'>Fixed typos for 'moduelpath' and 'batteries includes' to 'modulepath' and ↵Craig Sprout 2018-12-071-2/+2 | | | | 'batteries included' * Update module examples to latest versionsNate McCurdy 2018-05-081-4/+4 | * Resolve Rubocop warningsNate McCurdy 2018-05-082-5/+5 | | | | | * Removed the useless assignment in the config_version.rb error catching * Single quote vs. double quote in Puppetfile * Merge pull request #57 from natemccurdy/config_versionNate McCurdy 2018-05-082-3/+5 |\ | | | | Config Version Improvements | * Show the short hostname, not the FQDN in config_versionNate McCurdy 2017-12-152-2/+4 | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is mainly a style and readability change. Prior to this, on masters whose hostname is actually their FQDN, the config_version script would show the entire FQDN. On nodes with really longs FQDN's, it was not very nice to look at. This takes the hostname of the master, splits it on dots (.) and takes the first segment. Now this: compile-master-02.int.lab.dmz.company-name.net-production-48fd18ab Is this: compile-master-02-production-48fd18ab | * Use the puppet-agent ruby in config_version.rbNate McCurdy 2017-12-151-1/+1 | | | | | | | | | | | | | | | | Prior to this, the config_version.rb script (used for r10k) attempted to use the system ruby to parse the script. This caused problems on Puppet masters that don't have `ruby` in PATH. This fixes that by hardcoding the puppet-agent's ruby in the shebang. * | Merge pull request #61 from natemccurdy/readme_markdownNate McCurdy 2018-03-131-93/+94 |\ \ | | | | | | Improve the README | * | Simplify the info about the RampUp ProgramNate McCurdy 2018-03-131-5/+4 | | | | * | Add a tree view with descriptions of important filesNate McCurdy 2018-02-061-0/+23 | | | | * | Reorganize the README and improve the documentationNate McCurdy 2018-02-061-23/+27 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit moves the "where did all the previous code go" section to the bottom as it's been a while since that change was made. Nowadays, people new to Control Repositories will find this and won't understand the reference as they never knew about previous versions. Now the README starts right away with information on what this project is and how to use it. Also cleaned up some of the Markdown syntax to make it easier to read. | * | Fix markdown list syntaxNate McCurdy 2018-02-061-75/+50 |/ / * | Merge pull request #59 from petems/add_bitbucket_instructionsNate McCurdy 2018-02-011-4/+28 |\ \ | |/ |/| Add Bitbucket/Stash instructions | * Add Bitbucket/Stash instructionsPeter Souter 2018-02-011-4/+28 |/ * Merge pull request #56 from natemccurdy/gitignoreFederico Voges 2017-11-281-1/+1 |\ | | | | Ignore modules pulled from r10k | * Ignore modules pulled from r10k into modules/Nate McCurdy 2017-11-271-1/+1 |/ | | | | | | | | Prior to this, modules that were deployed with r10k into the ./modules directory weren't being ignored by git. When doing local development or testing, it's nice to be able to run 'r10k puppetfile install' to pull down modules from the Puppetfile. After this commit, those modules won't be tracked by git. * Merge pull request #55 from igalic/patch-1Nate McCurdy 2017-11-271-1/+1 |\ | | | | point "forge" to new canonical URL, with https | * point "forge" to new canonical URL, with httpsIgor Galić 2017-11-271-1/+1 |/ * Merge pull request #53 from reidmv/hiera5Nate McCurdy 2017-11-163-0/+12 |\ | | | | Enable Hiera 5 | * Enable Hiera 5Reid Vandewiele 2017-11-153-0/+12 | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit enables the control repo to use Hiera 5 environment-level hiera hierarchy. This means adding a hiera.yaml to the repo, and moving hieradata/ => data/. We should do this to the control-repo template new customers base off of because in a Hiera 5 world, the global hiera.yaml should be very minimal (possibly even ONLY having the console level), and everything else (nodes, common) belongs in the environment hiera.yaml. This control-repo template is how people start using Puppet. It should reflect using our most modern technologies. * | Merge pull request #54 from jdesroch/patch-1