summaryrefslogtreecommitdiff
path: root/manifests/init.pp
AgeCommit message (Collapse)Author
2012-12-12added description of replace in the comment blockJasper Poppe
2012-12-12added (file) $replace parameter to concatJasper Poppe
2012-08-30Fixes various puppet-lint warnings.Jan Vansteenkiste
* ./manifests/init.pp - WARNING: ensure found on line but it's not the first attribute on line 222 * ./manifests/setup.pp - WARNING: selector inside resource block on line 34 * ./manifests/fragment.pp - WARNING: case statement without a default case on line 28
2012-08-30Document the path parameter and provide a small use case.Jan Vansteenkiste
2012-08-30Allow overriding the target path of a (concat) file and use a custom name.Jan Vansteenkiste
2012-07-11Merge pull request #27 from djmitche/auto-setupR.I.Pienaar
Include concat::setup from concat, so users don't need to
2012-07-11Include concat::setup from concat, so users don't need toDustin J. Mitchell
2012-07-11Remove spurious 'e' character.Dustin J. Mitchell
2012-06-23Reformatting for puppet-lintPaul Belanger
Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com>
2012-05-20add information about concat_basedir and the need for pluginsync = true at ↵Gildas Le Nadan
least once
2012-04-24Style guideline fixesErik Dalén
Comply better with puppet community style guidelines. Change-Id: Ie1782d266539b1a8f9890b2ade77280011aa22aa
2012-04-17Remove the gnu parameter from concatReid Vandewiele
Previously, the concatfragments.sh script was would default to using GNU-specific flags for find, sort, and xargs. This necessitated explicit passing of a "gnu = false" parameter to the concat define in order to successfully run the script without GNU-specific flags when working with systems that do not by default include GNU versions of the utilities (solaris, for example). This commit modifies the concatfragments script such that GNU versions of the utilities are not needed at all. It does this while preserving the original use case for the GNU flags, which was to allow special characters (like spaces) in the filenames, which it accomplished by using GNU flags to separate fields using null characters instead of newlines. In order to preserve backwards-compatibility with existing puppet installations that make use of the "gnu = false" parameter, the parameter list for the concat define has not been changed. Rather, the gnu parameter is now deprecated and ignored.
2011-12-05Fix use of unqualified variable namesChristian G. Warden
Fully qualify $::id, $::puppetversion, and $::concat_basedir.
2011-06-23finish work for unpriviledged userPeter Meier
To be able to use the module as an unprivileged user we need to adjust certain things: * only enforce the run user and group if we are root and can actually change the user * set owner/group of our files and directories to our own user/group * place the concat script in a location we can write -> use the concat dir for that.
2011-02-03- make the root group configurable in the concat::setup class for portabilityPierre-Yves Ritschard
- use sh and not bash
2010-12-03add a -g flag to concatfragments.sh to disable GNU extensions to find, sort ↵Jonathan Boyett
and xargs; makes concat work on Solaris. Add a $gnu parameter to make use of the aforementioned -g flag, and a $order parameter to make use of the -n flag in concatfragments.sh
2010-10-04Parametrize warning messagemartin f. krafft
The concat warn parameter can now be any string (and needs to include the appropriate commenting character) and will then override the default (which still gets printed when warn=>true). Signed-off-by: martin f. krafft <madduck@madduck.net>
2010-07-14Make the filebucket behavior of files configurableR.I.Pienaar
2010-05-22improve documentationR.I.Pienaar
2010-05-06Pull in work from private Subversion repositoryR.I.Pienaar