Skip to content
Snippets Groups Projects
Commit 8e3e8bc5 authored by hahn's avatar hahn
Browse files

task#38890 replace direct puppet call with a shell script

parent b3fc8ffb
Branches
No related tags found
No related merge requests found
...@@ -33,7 +33,9 @@ $aConfig = array( ...@@ -33,7 +33,9 @@ $aConfig = array(
// puppet agent liefert 0 oder 2 zurueck, wenn OK // puppet agent liefert 0 oder 2 zurueck, wenn OK
// http://docs.puppetlabs.com/references/3.4.0/man/apply.html // http://docs.puppetlabs.com/references/3.4.0/man/apply.html
'command' => 'sudo puppet agent -t --detailed-exitcodes ; rc=$?; if [ $rc -eq 2 ]; then rc=0; fi ; exit $rc', // 'command' => 'sudo puppet agent -t --detailed-exitcodes ; rc=$?; if [ $rc -eq 2 ]; then rc=0; fi ; exit $rc',
// task#38890 replace direct puppet call with a shell script
'command' => '/usr/local/bin/puppetrun.sh',
), ),
'phases' => array( 'phases' => array(
"preview" => array( "preview" => array(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment