Commit graph

349 commits

Author SHA1 Message Date
Ashley Penney
027b7bc7c5 Prepare a 1.1.x release. 2014-05-19 08:42:42 -07:00
Ashley Penney
b36698162e Merge pull request #99 from apenney/typo-fix
Quick typo fix.
2014-05-16 12:58:11 -04:00
Ashley Penney
a5b34eac5a Quick typo fix. 2014-05-16 18:57:55 +02:00
Ashley Penney
d4a2b220ff Merge pull request #95 from mruzicka/feature/master/quote-char-parameter-for-subsetting
Add quote_char parameter to the ini_subsetting resource type
2014-05-16 12:57:11 -04:00
Ashley Penney
6656f0214c Merge pull request #97 from apenney/add-platforms
Add RHEL7 and Ubuntu 14.04 support.
2014-05-13 16:40:56 -04:00
Ashley Penney
61203df371 Add RHEL7 and Ubuntu 14.04 support. 2014-05-13 22:40:05 +02:00
Ashley Penney
85f00fe0a6 Merge pull request #96 from apenney/10xmerge
10xmerge
2014-05-13 16:38:04 -04:00
Ashley Penney
e24dd91522 Merge branch '1.0.x' into 10xmerge 2014-05-13 22:32:05 +02:00
Michal Růžička
77854d55f8 Tests for the quote_char parameter. 2014-05-07 23:52:07 +02:00
Michal Růžička
560bbc622f Add quote_char parameter to the ini_subsetting resource type
The quote_char is used to quote the entire setting when it is modified
as a result of changes to some subsettings.

For an example let's assume we have a setting of this form:
  JAVA_ARGS=-Xmx256m
and we want to add the '-Xms' parameter to the setting, for that purpose
we define a resource like this:
  ini_subsetting { '-Xms':
    ensure     => present,
    path       => '/some/config/file',
    section    => '',
    setting    => 'JAVA_ARGS',
    subsetting => '-Xms'
    value      => '256m',
  }
which results into the following setting:
  JAVA_ARGS=-Xmx256m -Xms256m
But this is not what we intended - if this setting is read by the bash
shell the '-Xms256m' parameter is interpreted as a command to be
executed rather than a value to be assigned to the JAVA_ARGS variable.

To fix this problem the quote_char parameter was added to the
ini_subsetting resource type, and we'll take advantage of it to fix the
problem in the above example like so:
  ini_subsetting { '-Xms':
    ensure     => present,
    path       => '/some/config/file',
    section    => '',
    setting    => 'JAVA_ARGS',
    quote_char => '"',
    subsetting => '-Xms'
    value      => '256m',
  }
which will result into:
  JAVA_ARGS="-Xmx256m -Xms256m"
which is what we intended.
2014-05-07 17:04:43 +02:00
Ashley Penney
790aa9cf86 Merge pull request #94 from igalic/igorance
be more ignorant
2014-04-23 09:47:46 -04:00
Igor Galić
77429f6961 be more igorant 2014-04-18 19:37:20 +02:00
Hunter Haugen
8ca8e12492 Merge pull request #90 from apenney/last-minute-metadata-fix
Add missing fields back to work around Puppet bug.
2014-03-03 14:03:01 -08:00
Ashley Penney
0a92f3277d Add missing fields back to work around Puppet bug. 2014-03-03 21:50:38 +00:00
Hunter Haugen
2376e7cf2c Merge pull request #89 from apenney/102-supported
Prepare supported module 1.0.3.
2014-03-03 12:00:35 -08:00
Ashley Penney
40217456b3 Prepare supported module 1.0.3. 2014-03-03 19:43:12 +00:00
Hunter Haugen
0c27288cec Merge pull request #88 from apenney/metadata
Add AIX and remove fields copied from Modulefile.
2014-03-03 10:49:00 -08:00
Ashley Penney
6c63184cf7 Add AIX and remove fields copied from Modulefile. 2014-03-03 18:43:47 +00:00
Ashley Penney
6b0a2009f1 Merge pull request #87 from laurenrother/1.0.x
Adds "Release Notes/Known Bugs" to Changelog, updates file format to markdown, standardizes the format of previous entries
2014-03-03 11:51:45 -05:00
Lauren Rother
f7915215aa Adds "Release Notes/Known Bugs" to Changelog, updates file format to markdown, standardizes the format of previous entries
Per a request to have initial release notes that specifically listed known issues for this PE 3.2 release, and barred by time constraints from automating a pull from open issues in JIRA, this commit adds a Release Note and Known Bug section to the Changelog for the imminent 3.2 release. As it will display on the Forge, updates file type to markdown and standardizes previous entries. Adds template for release notes to be filled in later.
2014-03-02 09:58:27 -08:00
Ashley Penney
1edd2d506a Merge pull request #86 from apenney/fix-tmpdir
Convert to using .tmpdir instead of a hardcoded /tmp, so this works
2014-02-27 18:10:34 -05:00
Ashley Penney
2aceaef207 Convert to using .tmpdir instead of a hardcoded /tmp, so this works
on Windows too.
2014-02-27 23:09:24 +00:00
Branan Purvine-Riley
ca7e441e9f Merge pull request #84 from hunner/grep_sol
It is actually all Solaris.
2014-02-27 14:21:44 -08:00
Hunter Haugen
eda726f09c It is actually all solaris 2014-02-27 14:18:59 -08:00
Hunter Haugen
f271580ae4 Merge pull request #83 from hunner/grep_sol10
Correct syntax
2014-02-27 13:17:25 -08:00
Hunter Haugen
7de1e3d7a4 Correct syntax 2014-02-27 13:16:23 -08:00
Ashley Penney
698e632e7a Merge pull request #82 from hunner/grep_sol10
Avoid multi-line grep on Solaris 10
2014-02-27 15:57:21 -05:00
Hunter Haugen
49433d02bf Avoid multi-line grep on Solaris 10 2014-02-27 12:53:46 -08:00
Hunter Haugen
5ec46f6df8 Merge pull request #81 from hunner/release_1.0.2
Release 1.0.2
2014-02-26 17:30:27 -08:00
Hunter Haugen
3757c71eb3 Release 1.0.2
Summary:
This release adds supported platforms to metadata.json and contains spec fixes
2014-02-26 17:28:02 -08:00
Ashley Penney
d17dcfbe96 Merge pull request #80 from hunner/fix_aix
AIX exits with 2 on file doesn't exist.
2014-02-26 16:15:34 -05:00
Hunter Haugen
17a59b2b13 AIX exits with 2 on file doesn't exist. 2014-02-26 13:14:19 -08:00
Hunter Haugen
5e841a91f7 Merge branch 'missing_comma' into 1.0.x 2014-02-25 13:36:12 -08:00
Hunter Haugen
6999ab0ea4 Fix missing comma in metadata.json 2014-02-25 13:34:59 -08:00
Hunter Haugen
08346e908d Merge pull request #77 from hunner/add_metadata
Add supported OS/PE/Puppet
2014-02-25 13:20:51 -08:00
Hunter Haugen
5c2cb37b47 Add supported OS/PE/Puppet 2014-02-25 12:59:11 -08:00
Ashley Penney
b77ef8de90 Merge pull request #78 from hunner/remove_autopublish
Remove travis autopublish stuff
2014-02-24 19:49:52 -05:00
Hunter Haugen
f5e607afd6 Remove travis autopublish stuff
We'll do it in jenkins later
2014-02-24 16:48:41 -08:00
Ashley Penney
c1bc9d056a Merge pull request #75 from justinstoller/maint/1.0.x/dont_use_hardcoded_modpath
Remove basic spec
2014-02-13 18:50:30 -05:00
Justin Stoller
25e7c2845e Remove basic spec
This removes the "basic_spec" as it is largely a sanity check against
the env/tooling.  The spec itself is problematic because in Puppet
Enterprise a module will be in 'sitemoduledir' or 'distmoduledir'
depending on whether it's included in PE as part of the distribution or
not.  However it will always be in 'distmoduledir' for FOSS.
2014-02-13 15:38:21 -08:00
Ashley Penney
48a4e0891b Merge pull request #74 from hunner/release_1.0.1
Release 1.0.1
2014-02-12 14:16:56 -05:00
Hunter Haugen
5b6de5763f Release 1.0.1
Summary:
This release is a bugfix for handling whitespace/[]'s better, and adding
a bunch of tests.

Bugfixes:
- Handle whitespace in sections
- Handle square brances in values
- Add metadata.json
- Update some travis testing
- Tons of beaker-rspec tests
2014-02-12 11:06:57 -08:00
Hunter Haugen
a0c3b82e7f Merge pull request #73 from hunner/dynamic_gemsource
Allow custom gemsource
2014-02-11 16:50:09 -08:00
Hunter Haugen
ab21bd39fd Allow custom gemsource 2014-02-11 16:34:43 -08:00
Ashley Penney
467c4c56e9 Merge pull request #66 from hunner/update_specs
(FM-161) Add beaker tests for parameter coverage
2014-01-27 11:02:07 -08:00
Hunter Haugen
eda78abb6e (FM-161) Add beaker tests for parameter coverage 2014-01-27 10:33:45 -08:00
Hunter Haugen
664051c50d Merge pull request #70 from ghoneycutt/fix_travis_link_in_readme
Fix link to travis in README
2014-01-23 14:49:14 -08:00
Garrett Honeycutt
4e1bc1e914 Fix link to travis in README 2014-01-23 17:43:26 -05:00
Hunter Haugen
38f260c8ac Merge pull request #68 from ghoneycutt/test_puppet_v3_4
Test against Puppet v3.4
2014-01-23 14:24:34 -08:00
Hunter Haugen
17cba2fd79 Merge pull request #67 from ghoneycutt/enable_travis_fast_finish
Enable fast finish in Travis
2014-01-23 14:21:04 -08:00