Skip to content
This repository was archived by the owner on Oct 16, 2019. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: deanwilson/puppet-scripts
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: mindsocket/puppet-scripts
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 5 commits
  • 2 files changed
  • 3 contributors

Commits on Jul 26, 2011

  1. completion for signing requests

    Patrick Otto committed Jul 26, 2011
    Configuration menu
    Copy the full SHA
    7a8c5fe View commit details
    Browse the repository at this point in the history
  2. also complete for puppet cert

    Patrick Otto committed Jul 26, 2011
    Configuration menu
    Copy the full SHA
    279b127 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2011

  1. simple runner for puppet-lint to use in jenkins

    Patrick Otto committed Sep 10, 2011
    Configuration menu
    Copy the full SHA
    5b7d7ae View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2011

  1. correct argument passing

    codec committed Sep 11, 2011
    Configuration menu
    Copy the full SHA
    2634593 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2011

  1. Changed the error/warning output to include parseable filename, put a…

    …n explicit exit 0 at the end (otherwise last test ${_ERR} -ge 1 result gets passed back.
    
    
    The jenkins parser settings for identifying the warning/error lines with the "Compiler Warnings" plugin:
    regex:
    ^\s*(.*) *(WARNING|ERROR): (.* line (\d+).*)\s*$
    
    mapping script:
    import hudson.plugins.warnings.parser.Warning
    
    String fileName = matcher.group(1)
    String category = matcher.group(3).replaceAll("(on)? line \\d+", "")
    String message = matcher.group(3)
    String lineNumber = matcher.group(4)
    
    return new Warning(fileName, Integer.parseInt(lineNumber), "puppet-lint", category, message);
    
    example log message:
    modules/tomcat/manifests/sunjdk.pp  WARNING: double quoted string containing no variables on line 48
    mindsocket committed Nov 23, 2011
    Configuration menu
    Copy the full SHA
    c6412ca View commit details
    Browse the repository at this point in the history
Loading