Results 32 comments of Jan vStone

You can use jenkins::sysconfig for this: ``` puppet jenkins::sysconfig {'JAVA_ARGS': value => '-Djava.awt.headless=true -Xmx512m', } ``` or supply it in the config hash ``` puppet class {'jenkins': config_hash => {...

``` find . -maxdepth 1 -type d -iname "ispconfig3*" | while read line; do repo=`basename $line`; ./split_folder.sh $repo; done; ``` split_folder.sh: ``` bash #!/bin/bash repo=$1 branch=roundcube-${repo} git subtree split --prefix=$repo...

On a side note: I resolved this by converting to plaintext (hiera-eyaml-plaintext) first and then to the new encryption method.

Do we use `#stickers` or `#sticker_items` (following the api)? I'm contemplating adding this so I can remove those pesky stickers more easily :)

@tdm4, I initially only had time to test on a centos machine. I'll try and fix this soonish.

Seems to be related to #206

I did somewhat the same thing but added a `.sync.yml` file to make it future proof: ``` --- Gemfile: optional: ':development': - gem: rspec-json_expectations spec/spec_helper.rb: mock_with: ':rspec' spec_overrides: | require...

The check now only checks if the amount of spaces used for indent is an even number.

Use cases where determining the required amount of spaces makes stuff complicated. ``` puppet class {'foo': param => 'bar', } class { 'foo_deep': param => 'bar', } ################## class {'foo':...