git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/site-modules
diff options
context:
space:
mode:
Diffstat (limited to 'site-modules')
-rw-r--r--site-modules/adhoc/tasks/nix_example.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/site-modules/adhoc/tasks/nix_example.json b/site-modules/adhoc/tasks/nix_example.json
index 8c5ed75..2c4d5c7 100644
--- a/site-modules/adhoc/tasks/nix_example.json
+++ b/site-modules/adhoc/tasks/nix_example.json
@@ -1,4 +1,4 @@
{
- "description": "This is the description for the nix_example task",
- "input_method": "environment"
- }
+ "description": "This is the description for the nix_example task",
+ "input_method": "environment"
+}
> | | | | 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 Program