if self.verbose > 2:
LOG.debug("Cmd: {}".format(pp(cmd)))
cmd_str = ' '.join(map(lambda x: pipes.quote(x), cmd))
- LOG.debug("Executing: {}".format(cmd_str))
+ LOG.info("Executing: {}".format(cmd_str))
git = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(stdoutdata, stderrdata) = git.communicate()
LOG.debug("Return value: {}".format(ret_val))
if stdoutdata:
msg = "Output:\n{}".format(to_str(stdoutdata))
- LOG.debug(msg)
+ LOG.info(msg)
self.print_out(msg)
else:
LOG.debug("No output.")
LOG.warn(msg)
self.error_data.append(msg)
else:
- LOG.debug(msg)
+ LOG.info(msg)
self.print_out(msg)
finally:
os.chdir(cur_dir)
urllib.parse.quote(self.ref))
url = 'https://{h}:{po}{pa}'.format(
h=self.puppetmaster_host, po=self.puppetmaster_api_port, pa=path)
- LOG.info("Requesting DELETE from {} ...".format(url))
+ LOG.debug("Requesting DELETE from {} ...".format(url))
cmd = []
if self.do_sudo:
cmd = ['sudo', '-n']
+ cmd.append(self.curl_bin)
+ if self.verbose:
+ cmd.append('-i')
+
cmd += [
- self.curl_bin, '-i',
'--cert', cert_file,
'--key', key_file,
'--cacert', ca_file,
+ '--silent', '--show-error',
'-X', 'DELETE',
url,
]
cmd_str = ' '.join(map(lambda x: pipes.quote(x), cmd))
if self.verbose > 2:
LOG.debug("Cmd: {}".format(pp(cmd)))
- LOG.debug("Executing: {}".format(cmd_str))
+ LOG.info("Executing: {}".format(cmd_str))
if self.simulate:
LOG.info("Simulation mode, don't executing {}.".format(self.curl_bin))
LOG.debug("Return value: {}".format(ret_val))
if stdoutdata:
msg = "Output:\n{}".format(to_str(stdoutdata))
- LOG.debug(msg)
+ LOG.info(msg)
self.print_out(msg)
else:
LOG.debug("No output.")
LOG.warn(msg)
self.error_data.append(msg)
else:
- LOG.debug(msg)
+ LOG.info(msg)
self.print_out(msg)
return
cmd_str = ' '.join(map(lambda x: pipes.quote(x), cmd))
if self.verbose > 2:
LOG.debug("Cmd: {}".format(pp(cmd)))
- LOG.debug("Executing: {}".format(cmd_str))
+ LOG.info("Executing: {}".format(cmd_str))
if self.simulate:
LOG.info("Simulation mode, don't executing {!r}.".format(self.r10k_bin))
LOG.debug("Return value: {}".format(ret_val))
if stdoutdata:
msg = "Output:\n{}".format(to_str(stdoutdata))
- LOG.debug(msg)
+ LOG.info(msg)
self.print_out(msg)
else:
LOG.debug("No output.")
self.error_data.append(msg)
res = False
else:
- LOG.debug(msg)
+ LOG.info(msg)
self.print_out(msg)
return res