From 5bf8e4d766f74816f45295e56c399dd81ac5b823 Mon Sep 17 00:00:00 2001 From: elf Date: Mon, 4 May 2020 23:11:58 +0900 Subject: [PATCH 01/11] dot-cdist --- kjg/dot-cdist/init | 0 kjg/todo-elfui-MacBook-Pro.local-2020.org | 4 ++++ kjg/todo.org | 4 +++- 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 kjg/dot-cdist/init create mode 100644 kjg/todo-elfui-MacBook-Pro.local-2020.org diff --git a/kjg/dot-cdist/init b/kjg/dot-cdist/init new file mode 100644 index 0000000..e69de29 diff --git a/kjg/todo-elfui-MacBook-Pro.local-2020.org b/kjg/todo-elfui-MacBook-Pro.local-2020.org new file mode 100644 index 0000000..ef9bd2c --- /dev/null +++ b/kjg/todo-elfui-MacBook-Pro.local-2020.org @@ -0,0 +1,4 @@ +* Tasks +** TODO [#A] + SCHEDULED: <2020-05-02 Sat> + [[mu4e:msgid:20200426002704.azrjjvoqhyhcsx4g@wolfsden.cz][Re: struggling with apk in unattended session]] diff --git a/kjg/todo.org b/kjg/todo.org index 22272cb..e3fd432 100644 --- a/kjg/todo.org +++ b/kjg/todo.org @@ -24,4 +24,6 @@ test ** TODO [#A] SCHEDULED: <2020-04-30 Thu> [[mu4e:msgid:rt-4.4.1-3+deb9u3-18825-1587474236-1715.9208-22-0@support.ungleich.ch][[support.ungleich.ch #9208] test]] - +** TODO [#A] + SCHEDULED: <2020-05-02 Sat> + [[mu4e:msgid:CABsR=fQwROqVUf+k5kBBQAAEDmyqnoVHMF9-L+S1mKYHjU8BNw@mail.gmail.com][awall difficulties]] From 90cc998487bc4ba3db068935707638c5bc657ff2 Mon Sep 17 00:00:00 2001 From: elf Date: Mon, 4 May 2020 23:55:03 +0900 Subject: [PATCH 02/11] remove init file --- kjg/dot-cdist/init | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 kjg/dot-cdist/init diff --git a/kjg/dot-cdist/init b/kjg/dot-cdist/init deleted file mode 100644 index e69de29..0000000 From 98afd04d2b947d79378a5b02aa3bc6116c5b9965 Mon Sep 17 00:00:00 2001 From: elf Date: Tue, 5 May 2020 00:00:58 +0900 Subject: [PATCH 03/11] manifest init --- kjg/dot-cdist/manifest/init | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 kjg/dot-cdist/manifest/init diff --git a/kjg/dot-cdist/manifest/init b/kjg/dot-cdist/manifest/init new file mode 100644 index 0000000..fcbae85 --- /dev/null +++ b/kjg/dot-cdist/manifest/init @@ -0,0 +1,7 @@ +case "$__target_host" in + # Everybody has this + localhost) + __file /etc/cdist-configured + + ;; +esac From 6b79da4d9a2bbc8c7b10163a21f22d4b576d4ad0 Mon Sep 17 00:00:00 2001 From: elf Date: Tue, 5 May 2020 00:02:40 +0900 Subject: [PATCH 04/11] timezone setting --- kjg/dot-cdist/manifest/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kjg/dot-cdist/manifest/init b/kjg/dot-cdist/manifest/init index fcbae85..a862901 100644 --- a/kjg/dot-cdist/manifest/init +++ b/kjg/dot-cdist/manifest/init @@ -2,6 +2,6 @@ case "$__target_host" in # Everybody has this localhost) __file /etc/cdist-configured - + __timezone Asia/Seoul ;; esac From 2e235cbd1f91114057b990cb383859d090683267 Mon Sep 17 00:00:00 2001 From: elf Date: Tue, 5 May 2020 00:11:00 +0900 Subject: [PATCH 05/11] update package --- kjg/dot-cdist/manifest/init | 1 + 1 file changed, 1 insertion(+) diff --git a/kjg/dot-cdist/manifest/init b/kjg/dot-cdist/manifest/init index a862901..0429185 100644 --- a/kjg/dot-cdist/manifest/init +++ b/kjg/dot-cdist/manifest/init @@ -3,5 +3,6 @@ case "$__target_host" in localhost) __file /etc/cdist-configured __timezone Asia/Seoul + __package emacs --state present ;; esac From cc5bb23ad3afed9b12559bc5cdc913a7502d90b3 Mon Sep 17 00:00:00 2001 From: elf Date: Wed, 6 May 2020 21:38:35 +0900 Subject: [PATCH 06/11] [cdist #2]create __my_computer cdist --- kjg/dot-cdist/manifest/init | 4 +--- kjg/dot-cdist/type/__my_computer/manifest | 7 +++++++ kjg/dot-cdist/type/__my_computer/manifest~ | 6 ++++++ 3 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 kjg/dot-cdist/type/__my_computer/manifest create mode 100644 kjg/dot-cdist/type/__my_computer/manifest~ diff --git a/kjg/dot-cdist/manifest/init b/kjg/dot-cdist/manifest/init index 0429185..3f3a6db 100644 --- a/kjg/dot-cdist/manifest/init +++ b/kjg/dot-cdist/manifest/init @@ -1,8 +1,6 @@ case "$__target_host" in # Everybody has this localhost) - __file /etc/cdist-configured - __timezone Asia/Seoul - __package emacs --state present + __my_computer ;; esac diff --git a/kjg/dot-cdist/type/__my_computer/manifest b/kjg/dot-cdist/type/__my_computer/manifest new file mode 100644 index 0000000..2c1ad9f --- /dev/null +++ b/kjg/dot-cdist/type/__my_computer/manifest @@ -0,0 +1,7 @@ +#!/bin/sh + +__package zsh --state present +__package mosh --state present +__package emacks --state present +__package namp --state present +__package sipcalc --state present diff --git a/kjg/dot-cdist/type/__my_computer/manifest~ b/kjg/dot-cdist/type/__my_computer/manifest~ new file mode 100644 index 0000000..65f9a5b --- /dev/null +++ b/kjg/dot-cdist/type/__my_computer/manifest~ @@ -0,0 +1,6 @@ +#!/bin/sh + +pkgs="zsh mosh emacs nmap sipcalc" +for pkg in ${pkgs}; do + __package ${pkg} --state present +done \ No newline at end of file From 3e3210bc68bb433108443c5e6b58c74db6150fae Mon Sep 17 00:00:00 2001 From: elf Date: Wed, 6 May 2020 21:41:15 +0900 Subject: [PATCH 07/11] [cdist #2] update manifest for for-loop --- kjg/dot-cdist/type/__my_computer/manifest | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/kjg/dot-cdist/type/__my_computer/manifest b/kjg/dot-cdist/type/__my_computer/manifest index 2c1ad9f..a6b547c 100644 --- a/kjg/dot-cdist/type/__my_computer/manifest +++ b/kjg/dot-cdist/type/__my_computer/manifest @@ -1,7 +1,6 @@ #!/bin/sh -__package zsh --state present -__package mosh --state present -__package emacks --state present -__package namp --state present -__package sipcalc --state present +pkgs="zsh mosh emacs nmap sipcalc" +for pkg in ${pkgs}; do + __package ${pkg} --state present +done From de5ee76a10271dc622b1285d66b3a263f3d55a7c Mon Sep 17 00:00:00 2001 From: elf Date: Wed, 6 May 2020 22:11:44 +0900 Subject: [PATCH 08/11] [cdist #2] update manifest for .emacs and log file --- kjg/dot-cdist/type/__my_computer/files/.emacs | 251 ++++++++++++++++++ kjg/dot-cdist/type/__my_computer/manifest~ | 6 - kjg/dot-cdist/type/__my_computer/singleton | 0 kjg/log/cdist2/v.log | 2 + kjg/log/cdist2/vv.log | 50 ++++ 5 files changed, 303 insertions(+), 6 deletions(-) create mode 100644 kjg/dot-cdist/type/__my_computer/files/.emacs delete mode 100644 kjg/dot-cdist/type/__my_computer/manifest~ create mode 100644 kjg/dot-cdist/type/__my_computer/singleton create mode 100644 kjg/log/cdist2/v.log create mode 100644 kjg/log/cdist2/vv.log diff --git a/kjg/dot-cdist/type/__my_computer/files/.emacs b/kjg/dot-cdist/type/__my_computer/files/.emacs new file mode 100644 index 0000000..38cea20 --- /dev/null +++ b/kjg/dot-cdist/type/__my_computer/files/.emacs @@ -0,0 +1,251 @@ +;; Added by Package.el. This must come before configurations of +;; installed packages. Don't delete this line. If you don't want it, +;; just comment it out by adding a semicolon to the start of the line. +;; You may delete these explanatory comments. +(require 'package) +(add-to-list 'package-archives + '("melpa" . "http://melpa.org/packages/") t) +(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t) +(package-initialize) + + + +(global-set-key (kbd "") (lambda () (interactive) (find-file (concat "~/ungleich-learning-circle/kjg/learning-"(system-name)"-"(format-time-string "%Y")".org")))) +(global-set-key (kbd "C-x g") 'magit-status) +(global-set-key (kbd "C-c a") 'org-agenda) +(global-set-key (kbd "") 'org-todo-list) + +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(epg-gpg-program "/usr/local/bin/gpg") + '(org-agenda-files + (quote + ("~/ungleich-learning-circle/kjg/todo.org" "~/learning.org"))) + ;;'(org-directory (expand-file-name "~/ungleich-learning-circle/kjg/")) + '(package-selected-packages (quote (org org-gnome org-dp ## which-key magit))) + '(send-mail-function (quote sendmail-send-it))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) + +(require 'epa-file) + +(epa-file-enable) + +(setq mu4e-mu-binary "/usr/local/bin/mu") + +(add-to-list 'load-path "/usr/local/share/emacs/site-lisp/mu/mu4e") +(require 'mu4e) + +(setq + mue4e-headers-skip-duplicates t + mu4e-view-show-images t + mu4e-view-show-addresses t + mu4e-compose-format-flowed nil + mu4e-date-format "%y/%m/%d" + mu4e-headers-date-format "%Y/%m/%d" + mu4e-change-filenames-when-moving t + mu4e-attachments-dir "~/Downloads" + + mu4e-maildir "~/Maildir/ungleich" ;; top-level Maildir + ;; note that these folders below must start with / + ;; the paths are relative to maildir root + mu4e-refile-folder "/Archive" + mu4e-sent-folder "/Sent" + mu4e-drafts-folder "/Drafts" + mu4e-trash-folder "/Trash" + mu4e-reply-to-address "jinguk.kwon@ungleich.ch" + user-mail-address "jinguk.kwon@ungleich.ch" + user-full-name "kjg") + +;; this setting allows to re-sync and re-index mail +;; by pressing U +(setq mu4e-get-mail-command "mbsync -a") + +(setq mail-host-address "mail.ungleich.ch") + + +(setq send-mail-function 'smtpmail-send-it + message-send-mail-function 'smtpmail-send-it + user-mail-address "jinguk.kwon@ungleich.ch" + smtpmail-starttls-credentials '(("smtp.ungleich.ch" 587 nil nil)) + smtpmail-auth-credentials "~/.authinfo.gpg" + smtpmail-default-smtp-server "smtp.ungleich.ch" + smtpmail-smtp-server "smtp.ungleich.ch" + smtpmail-smtp-service 587 + smtpmail-smtp-user "jinguk.kwon@ungleich.ch" + smtpmail-debug-info t + smtpmail-debug-verb t) + ;;starttls-extra-arguments nil + ;;starttls-gnutls-program (executable-find "gnutls-cli") + ;;smtpmail-warn-about-unknown-extensions t + ;;starttls-use-gnutls t) + +(require 'smtpmail) + +;;store org-mode links to messages +(require 'org-mu4e) + +(define-key mu4e-headers-mode-map (kbd "C-c c") 'mu4e-org-store-and-capture) +(define-key mu4e-view-mode-map (kbd "C-c c") 'mu4e-org-store-and-capture) + +(setq org-directory (expand-file-name "~/ungleich-learning-circle/kjg/")) +;;store link to message if in header view, not to header query +(setq org-mu4e-link-query-in-headers-mode nil) + +(setq org-capture-templates + '(("t" "todo" entry (file+headline (lambda() (concat "~/ungleich-learning-circle/kjg/todo-"(system-name)"-"(format-time-string "%Y")".org")) "Tasks") + "* TODO [#A] %?\nSCHEDULED: %(org-insert-time-stamp (org-read-date nil t \"+0d\"))\n%a\n"))) + +(setq org-log-done 'time) + +~ +❯ cd ungleich-learning-circle + +~/ungleich-learning-circle master* +❯ cd kjg/dot-cdist + +~/ungleich-learning-circle/kjg/dot-cdist master* +❯ ls -al +total 0 +drwxr-xr-x 4 elf staff 128 May 6 21:26 . +drwxr-xr-x 8 elf staff 256 May 6 22:03 .. +drwxr-xr-x 3 elf staff 96 May 6 21:33 manifest +drwxr-xr-x 3 elf staff 96 May 6 21:26 type + +~/ungleich-learning-circle/kjg/dot-cdist master* +❯ cd type + +~/ungleich-learning-circle/kjg/dot-cdist/type master* +❯ ls -al +total 0 +drwxr-xr-x 3 elf staff 96 May 6 21:26 . +drwxr-xr-x 4 elf staff 128 May 6 21:26 .. +drwxr-xr-x 4 elf staff 128 May 6 22:06 __my_computer + +~/ungleich-learning-circle/kjg/dot-cdist/type master* +❯ cd __my_computer + +~/ungleich-learning-circle/kjg/dot-cdist/type/__my_computer master* +❯ ls -al +total 8 +drwxr-xr-x 4 elf staff 128 May 6 22:06 . +drwxr-xr-x 3 elf staff 96 May 6 21:26 .. +drwxr-xr-x 2 elf staff 64 May 6 22:06 files +-rw-r--r-- 1 elf staff 110 May 6 21:40 manifest + +~/ungleich-learning-circle/kjg/dot-cdist/type/__my_computer master* +❯ cat ~/.emacs + +;; Added by Package.el. This must come before configurations of +;; installed packages. Don't delete this line. If you don't want it, +;; just comment it out by adding a semicolon to the start of the line. +;; You may delete these explanatory comments. +(require 'package) +(add-to-list 'package-archives + '("melpa" . "http://melpa.org/packages/") t) +(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t) +(package-initialize) + + + +(global-set-key (kbd "") (lambda () (interactive) (find-file (concat "~/ungleich-learning-circle/kjg/learning-"(system-name)"-"(format-time-string "%Y")".org")))) +(global-set-key (kbd "C-x g") 'magit-status) +(global-set-key (kbd "C-c a") 'org-agenda) +(global-set-key (kbd "") 'org-todo-list) + +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(epg-gpg-program "/usr/local/bin/gpg") + '(org-agenda-files + (quote + ("~/ungleich-learning-circle/kjg/todo.org" "~/learning.org"))) + ;;'(org-directory (expand-file-name "~/ungleich-learning-circle/kjg/")) + '(package-selected-packages (quote (org org-gnome org-dp ## which-key magit))) + '(send-mail-function (quote sendmail-send-it))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) + +(require 'epa-file) + +(epa-file-enable) + +(setq mu4e-mu-binary "/usr/local/bin/mu") + +(add-to-list 'load-path "/usr/local/share/emacs/site-lisp/mu/mu4e") +(require 'mu4e) + +(setq + mue4e-headers-skip-duplicates t + mu4e-view-show-images t + mu4e-view-show-addresses t + mu4e-compose-format-flowed nil + mu4e-date-format "%y/%m/%d" + mu4e-headers-date-format "%Y/%m/%d" + mu4e-change-filenames-when-moving t + mu4e-attachments-dir "~/Downloads" + + mu4e-maildir "~/Maildir/ungleich" ;; top-level Maildir + ;; note that these folders below must start with / + ;; the paths are relative to maildir root + mu4e-refile-folder "/Archive" + mu4e-sent-folder "/Sent" + mu4e-drafts-folder "/Drafts" + mu4e-trash-folder "/Trash" + mu4e-reply-to-address "jinguk.kwon@ungleich.ch" + user-mail-address "jinguk.kwon@ungleich.ch" + user-full-name "kjg") + +;; this setting allows to re-sync and re-index mail +;; by pressing U +(setq mu4e-get-mail-command "mbsync -a") + +(setq mail-host-address "mail.ungleich.ch") + + +(setq send-mail-function 'smtpmail-send-it + message-send-mail-function 'smtpmail-send-it + user-mail-address "jinguk.kwon@ungleich.ch" + smtpmail-starttls-credentials '(("smtp.ungleich.ch" 587 nil nil)) + smtpmail-auth-credentials "~/.authinfo.gpg" + smtpmail-default-smtp-server "smtp.ungleich.ch" + smtpmail-smtp-server "smtp.ungleich.ch" + smtpmail-smtp-service 587 + smtpmail-smtp-user "jinguk.kwon@ungleich.ch" + smtpmail-debug-info t + smtpmail-debug-verb t) + ;;starttls-extra-arguments nil + ;;starttls-gnutls-program (executable-find "gnutls-cli") + ;;smtpmail-warn-about-unknown-extensions t + ;;starttls-use-gnutls t) + +(require 'smtpmail) + +;;store org-mode links to messages +(require 'org-mu4e) + +(define-key mu4e-headers-mode-map (kbd "C-c c") 'mu4e-org-store-and-capture) +(define-key mu4e-view-mode-map (kbd "C-c c") 'mu4e-org-store-and-capture) + +(setq org-directory (expand-file-name "~/ungleich-learning-circle/kjg/")) +;;store link to message if in header view, not to header query +(setq org-mu4e-link-query-in-headers-mode nil) + +(setq org-capture-templates + '(("t" "todo" entry (file+headline (lambda() (concat "~/ungleich-learning-circle/kjg/todo-"(system-name)"-"(format-time-string "%Y")".org")) "Tasks") + "* TODO [#A] %?\nSCHEDULED: %(org-insert-time-stamp (org-read-date nil t \"+0d\"))\n%a\n"))) + +(setq org-log-done 'time) diff --git a/kjg/dot-cdist/type/__my_computer/manifest~ b/kjg/dot-cdist/type/__my_computer/manifest~ deleted file mode 100644 index 65f9a5b..0000000 --- a/kjg/dot-cdist/type/__my_computer/manifest~ +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -pkgs="zsh mosh emacs nmap sipcalc" -for pkg in ${pkgs}; do - __package ${pkg} --state present -done \ No newline at end of file diff --git a/kjg/dot-cdist/type/__my_computer/singleton b/kjg/dot-cdist/type/__my_computer/singleton new file mode 100644 index 0000000..e69de29 diff --git a/kjg/log/cdist2/v.log b/kjg/log/cdist2/v.log new file mode 100644 index 0000000..f19c953 --- /dev/null +++ b/kjg/log/cdist2/v.log @@ -0,0 +1,2 @@ +INFO: localhost: Starting configuration run +INFO: localhost: Finished successful run in 2.24 seconds \ No newline at end of file diff --git a/kjg/log/cdist2/vv.log b/kjg/log/cdist2/vv.log new file mode 100644 index 0000000..fb4397b --- /dev/null +++ b/kjg/log/cdist2/vv.log @@ -0,0 +1,50 @@ +INFO: localhost: Starting configuration run +VERBOSE: localhost: Running global explorers +VERBOSE: localhost: Running initial manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/init +VERBOSE: localhost: Preparing object __my_computer/ +VERBOSE: localhost: Running manifest and explorers for __my_computer/ +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer/manifest for object __my_computer/ +VERBOSE: localhost: Preparing object __package/zsh +VERBOSE: localhost: Running manifest and explorers for __package/zsh +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/zsh +VERBOSE: localhost: Preparing object __package/mosh +VERBOSE: localhost: Running manifest and explorers for __package/mosh +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/mosh +VERBOSE: localhost: Preparing object __package/emacs +VERBOSE: localhost: Running manifest and explorers for __package/emacs +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/emacs +VERBOSE: localhost: Preparing object __package/nmap +VERBOSE: localhost: Running manifest and explorers for __package/nmap +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/nmap +VERBOSE: localhost: Preparing object __package_yum/zsh +VERBOSE: localhost: Running manifest and explorers for __package_yum/zsh +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running object __package_yum/zsh +VERBOSE: localhost: Preparing object __package_yum/mosh +VERBOSE: localhost: Running manifest and explorers for __package_yum/mosh +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running object __package_yum/mosh +VERBOSE: localhost: Preparing object __package_yum/emacs +VERBOSE: localhost: Running manifest and explorers for __package_yum/emacs +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running object __package_yum/emacs +VERBOSE: localhost: Preparing object __package_yum/nmap +VERBOSE: localhost: Running manifest and explorers for __package_yum/nmap +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running object __package_yum/nmap +VERBOSE: localhost: Running object __package/zsh +VERBOSE: localhost: Running object __package/mosh +VERBOSE: localhost: Running object __package/emacs +VERBOSE: localhost: Running object __package/nmap +VERBOSE: localhost: Preparing object __file/root/.emacs +VERBOSE: localhost: Running manifest and explorers for __file/root/.emacs +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running object __file/root/.emacs +VERBOSE: localhost: Running object __my_computer/ +INFO: localhost: Finished successful run in 2.15 seconds +VERBOSE: config: Total processing time for 1 host(s): 2.158529043197632 \ No newline at end of file From 04da1f0d76e7137585dcf869901e56218e60034c Mon Sep 17 00:00:00 2001 From: elf Date: Wed, 6 May 2020 22:14:21 +0900 Subject: [PATCH 09/11] [cdist #2] update manifest for .emacs file --- kjg/dot-cdist/type/__my_computer/manifest | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kjg/dot-cdist/type/__my_computer/manifest b/kjg/dot-cdist/type/__my_computer/manifest index a6b547c..27d7365 100644 --- a/kjg/dot-cdist/type/__my_computer/manifest +++ b/kjg/dot-cdist/type/__my_computer/manifest @@ -4,3 +4,6 @@ pkgs="zsh mosh emacs nmap sipcalc" for pkg in ${pkgs}; do __package ${pkg} --state present done + +require="__package/emacs" __file ~/.emacs \ + --mode 0644 --source "$__type/files/.emacs" From a79fd2b443938f60dc2ca568f453fca2f0bd3a5c Mon Sep 17 00:00:00 2001 From: elf Date: Wed, 6 May 2020 23:03:01 +0900 Subject: [PATCH 10/11] [cdist #2] create cdist.org --- kjg/cdist.org | 1003 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1003 insertions(+) create mode 100644 kjg/cdist.org diff --git a/kjg/cdist.org b/kjg/cdist.org new file mode 100644 index 0000000..ccc3085 --- /dev/null +++ b/kjg/cdist.org @@ -0,0 +1,1003 @@ +* cdist2 + +** Explain the difference between a singleton and non-singleton type +singleton : be used only once per host +non-singleton : not only once per host + +** Explain the difference between the different verbosity levels + +-v : include INFO information +-vv : include VERBOSE information +-vvv : include DEBUG information +-vvvv : include TRACE information + +** log +*** v-log +INFO: localhost: Starting configuration run +INFO: localhost: Finished successful run in 2.24 seconds + +*** vv-log +INFO: localhost: Starting configuration run +VERBOSE: localhost: Running global explorers +VERBOSE: localhost: Running initial manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/init +VERBOSE: localhost: Preparing object __my_computer/ +VERBOSE: localhost: Running manifest and explorers for __my_computer/ +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer/manifest for object __my_computer/ +VERBOSE: localhost: Preparing object __package/zsh +VERBOSE: localhost: Running manifest and explorers for __package/zsh +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/zsh +VERBOSE: localhost: Preparing object __package/mosh +VERBOSE: localhost: Running manifest and explorers for __package/mosh +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/mosh +VERBOSE: localhost: Preparing object __package/emacs +VERBOSE: localhost: Running manifest and explorers for __package/emacs +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/emacs +VERBOSE: localhost: Preparing object __package/nmap +VERBOSE: localhost: Running manifest and explorers for __package/nmap +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/nmap +VERBOSE: localhost: Preparing object __package_yum/zsh +VERBOSE: localhost: Running manifest and explorers for __package_yum/zsh +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running object __package_yum/zsh +VERBOSE: localhost: Preparing object __package_yum/mosh +VERBOSE: localhost: Running manifest and explorers for __package_yum/mosh +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running object __package_yum/mosh +VERBOSE: localhost: Preparing object __package_yum/emacs +VERBOSE: localhost: Running manifest and explorers for __package_yum/emacs +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running object __package_yum/emacs +VERBOSE: localhost: Preparing object __package_yum/nmap +VERBOSE: localhost: Running manifest and explorers for __package_yum/nmap +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running object __package_yum/nmap +VERBOSE: localhost: Running object __package/zsh +VERBOSE: localhost: Running object __package/mosh +VERBOSE: localhost: Running object __package/emacs +VERBOSE: localhost: Running object __package/nmap +VERBOSE: localhost: Preparing object __file/root/.emacs +VERBOSE: localhost: Running manifest and explorers for __file/root/.emacs +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running object __file/root/.emacs +VERBOSE: localhost: Running object __my_computer/ +INFO: localhost: Finished successful run in 2.15 seconds +VERBOSE: config: Total processing time for 1 host(s): 2.158529043197632 +*** vvv-log +DEBUG: inventory: Host 'localhost' not found, skipped +DEBUG: config: Base root path for target host "localhost" is "/tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79" +DEBUG: localhost: remote_exec for host "localhost": ssh -o User=root -o ControlPath=/tmp/tmpb6qsot8m/s -o ControlMaster=auto -o ControlPersist=2h +DEBUG: localhost: remote_copy for host "localhost": scp -o User=root -q -o ControlPath=/tmp/tmpb6qsot8m/s -o ControlMaster=auto -o ControlPersist=2h +DEBUG: localhost: address family: 0 +DEBUG: localhost: derived host_name for host "localhost": localhost +DEBUG: localhost: derived host_fqdn for host "localhost": localhost.localdomain +DEBUG: localhost: target_host for host "localhost": ('localhost', 'localhost', 'localhost.localdomain') +INFO: localhost: Starting configuration run +DEBUG: localhost: Checking conf_dir /root/cdist/cdist/conf ... +DEBUG: localhost: Checking conf_dir /root/.cdist ... +DEBUG: localhost: Checking conf_dir /root/ungleich-learning-circle/kjg/dot-cdist ... +DEBUG: localhost: Checking conf_dir /root/ungleich-learning-circle/kjg/dot-cdist ... +VERBOSE: localhost: Running global explorers +DEBUG: localhost: Running global explorers sequentially +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +VERBOSE: localhost: Running initial manifest /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/init +DEBUG: localhost: /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/init is NOT executable, running it with /bin/sh -e +DEBUG: localhost: Iteration in sequential mode +VERBOSE: localhost: Preparing object __my_computer/ +VERBOSE: localhost: Running manifest and explorers for __my_computer/ +VERBOSE: localhost: Running type explorers for +VERBOSE: localhost: Running type manifest /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer/manifest for object __my_computer/ +DEBUG: localhost: /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer/manifest is NOT executable, running it with /bin/sh -e +DEBUG: localhost: Iteration in sequential mode +VERBOSE: localhost: Preparing object __package/zsh +VERBOSE: localhost: Running manifest and explorers for __package/zsh +VERBOSE: localhost: Running type explorers for +DEBUG: localhost: return_output is True, ignoring stdout +VERBOSE: localhost: Running type manifest /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/zsh +DEBUG: localhost: /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest is executable, running it +VERBOSE: localhost: Preparing object __package/mosh +VERBOSE: localhost: Running manifest and explorers for __package/mosh +VERBOSE: localhost: Running type explorers for +DEBUG: localhost: return_output is True, ignoring stdout +VERBOSE: localhost: Running type manifest /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/mosh +DEBUG: localhost: /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest is executable, running it +VERBOSE: localhost: Preparing object __package/emacs +VERBOSE: localhost: Running manifest and explorers for __package/emacs +VERBOSE: localhost: Running type explorers for +DEBUG: localhost: return_output is True, ignoring stdout +VERBOSE: localhost: Running type manifest /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/emacs +DEBUG: localhost: /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest is executable, running it +VERBOSE: localhost: Preparing object __package/nmap +VERBOSE: localhost: Running manifest and explorers for __package/nmap +VERBOSE: localhost: Running type explorers for +DEBUG: localhost: return_output is True, ignoring stdout +VERBOSE: localhost: Running type manifest /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/nmap +DEBUG: localhost: /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest is executable, running it +DEBUG: localhost: Iteration in sequential mode +VERBOSE: localhost: Preparing object __package_yum/zsh +VERBOSE: localhost: Running manifest and explorers for __package_yum/zsh +VERBOSE: localhost: Running type explorers for +DEBUG: localhost: return_output is True, ignoring stdout +VERBOSE: localhost: Running object __package_yum/zsh +DEBUG: localhost: Generating code for __package_yum/zsh +DEBUG: localhost: /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum/gencode-remote is executable, running it +VERBOSE: localhost: Preparing object __package_yum/mosh +VERBOSE: localhost: Running manifest and explorers for __package_yum/mosh +VERBOSE: localhost: Running type explorers for +DEBUG: localhost: return_output is True, ignoring stdout +VERBOSE: localhost: Running object __package_yum/mosh +DEBUG: localhost: Generating code for __package_yum/mosh +DEBUG: localhost: /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum/gencode-remote is executable, running it +VERBOSE: localhost: Preparing object __package_yum/emacs +VERBOSE: localhost: Running manifest and explorers for __package_yum/emacs +VERBOSE: localhost: Running type explorers for +DEBUG: localhost: return_output is True, ignoring stdout +VERBOSE: localhost: Running object __package_yum/emacs +DEBUG: localhost: Generating code for __package_yum/emacs +DEBUG: localhost: /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum/gencode-remote is executable, running it +VERBOSE: localhost: Preparing object __package_yum/nmap +VERBOSE: localhost: Running manifest and explorers for __package_yum/nmap +VERBOSE: localhost: Running type explorers for +DEBUG: localhost: return_output is True, ignoring stdout +VERBOSE: localhost: Running object __package_yum/nmap +DEBUG: localhost: Generating code for __package_yum/nmap +DEBUG: localhost: /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum/gencode-remote is executable, running it +DEBUG: localhost: Iteration in sequential mode +VERBOSE: localhost: Running object __package/zsh +DEBUG: localhost: Generating code for __package/zsh +VERBOSE: localhost: Running object __package/mosh +DEBUG: localhost: Generating code for __package/mosh +VERBOSE: localhost: Running object __package/emacs +DEBUG: localhost: Generating code for __package/emacs +VERBOSE: localhost: Running object __package/nmap +DEBUG: localhost: Generating code for __package/nmap +VERBOSE: localhost: Preparing object __file/root/.emacs +VERBOSE: localhost: Running manifest and explorers for __file/root/.emacs +VERBOSE: localhost: Running type explorers for +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +DEBUG: localhost: return_output is True, ignoring stdout +VERBOSE: localhost: Running object __file/root/.emacs +DEBUG: localhost: Generating code for __file/root/.emacs +DEBUG: localhost: /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/gencode-local is executable, running it +DEBUG: localhost: /tmp/tmp41dcf3ht/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/gencode-remote is executable, running it +DEBUG: localhost: Iteration in sequential mode +VERBOSE: localhost: Running object __my_computer/ +DEBUG: localhost: Generating code for __my_computer/ +DEBUG: localhost: Iteration in sequential mode +DEBUG: localhost: Running cleanup commands +DEBUG: localhost: cache subpath: 421aa90e079fa326b6494f812ad13e79 +INFO: localhost: Finished successful run in 2.21 seconds +VERBOSE: config: Total processing time for 1 host(s): 2.2233283519744873 + +*** vvvv-log +TRACE: cdist: command line args: Namespace(all_tagged_hosts=False, beta=None, cache_path_pattern=None, command='config', conf_dir=['/root/ungleich-learning-circle/kjg/dot-cdist'], config_file=None, dry_run=False, force_ipv=None, func=>, has_all_tags=False, host=['localhost'], hostfile=None, inventory_dir=None, jobs=None, manifest=None, out_path=None, parallel=None, quiet=False, remote_copy=None, remote_exec=None, remote_out_path=None, save_output_streams=True, tag=False, timestamp=False, use_archiving=None, verbose=4) +TRACE: cdist: configuration: {'GLOBAL': {'conf_dir': ['/root/ungleich-learning-circle/kjg/dot-cdist'], 'verbosity': 4, 'timestamp': False}} +TRACE: cdist: configured args: Namespace(all_tagged_hosts=False, beta=None, cache_path_pattern=None, command='config', conf_dir=['/root/ungleich-learning-circle/kjg/dot-cdist'], config_file=None, dry_run=False, force_ipv=None, func=>, has_all_tags=False, host=['localhost'], hostfile=None, inventory_dir=None, jobs=None, manifest=None, out_path=None, parallel=None, quiet=False, remote_copy=None, remote_exec=None, remote_out_path=None, save_output_streams=True, tag=False, timestamp=False, use_archiving=None, verbose=4) +TRACE: config: Processing hosts sequentially +TRACE: inventory: Init db: /root/.cdist/inventory +TRACE: inventory: Listing by host(s) +TRACE: inventory: host: localhost +DEBUG: inventory: Host 'localhost' not found, skipped +DEBUG: config: Base root path for target host "localhost" is "/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79" +DEBUG: localhost: remote_exec for host "localhost": ssh -o User=root -o ControlPath=/tmp/tmpf87m4xwe/s -o ControlMaster=auto -o ControlPersist=2h +DEBUG: localhost: remote_copy for host "localhost": scp -o User=root -q -o ControlPath=/tmp/tmpf87m4xwe/s -o ControlMaster=auto -o ControlPersist=2h +DEBUG: localhost: address family: 0 +DEBUG: localhost: derived host_name for host "localhost": localhost +DEBUG: localhost: derived host_fqdn for host "localhost": localhost.localdomain +DEBUG: localhost: target_host for host "localhost": ('localhost', 'localhost', 'localhost.localdomain') +TRACE: localhost: Local mkdir: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data +INFO: localhost: Starting configuration run +TRACE: localhost: Local mkdir: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf +TRACE: localhost: Local mkdir: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/explorer +TRACE: localhost: Local mkdir: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object +TRACE: localhost: Local mkdir: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin +TRACE: localhost: Local mkdir: /root/.cdist/cache +TRACE: localhost: Local mkdir: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/stdout +TRACE: localhost: Local mkdir: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/stderr +TRACE: localhost: Local mkdir: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer +TRACE: localhost: Local mkdir: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/files +TRACE: localhost: Local mkdir: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/manifest +TRACE: localhost: Local mkdir: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type +DEBUG: localhost: Checking conf_dir /root/cdist/cdist/conf ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/hostname to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/hostname ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/os to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/os ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/runlevel to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/runlevel ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/memory to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/memory ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/os_release to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/os_release ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/cpu_sockets to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/cpu_sockets ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/is-freebsd-jail to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/is-freebsd-jail ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/kernel_name to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/kernel_name ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/lsb_codename to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_codename ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/lsb_description to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_description ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/lsb_id to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_id ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/lsb_release to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_release ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/machine to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/machine ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/machine_type to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/machine_type ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/os_version to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/os_version ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/cpu_cores to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/cpu_cores ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/disks to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/disks ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/init to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/init ... +TRACE: localhost: Linking /root/cdist/cdist/conf/explorer/interfaces to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/interfaces ... +TRACE: localhost: Linking /root/cdist/cdist/conf/manifest/sample-from-distribution to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/sample-from-distribution ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__apt_key to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__apt_key ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__apt_key_uri to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__apt_key_uri ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__apt_mark to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__apt_mark ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__apt_norecommends to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__apt_norecommends ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__apt_ppa to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__apt_ppa ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__apt_source to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__apt_source ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__apt_update_index to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__apt_update_index ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__block to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__block ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__ccollect_source to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__ccollect_source ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__cdist ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__cdistmarker to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__cdistmarker ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__chroot_mount to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__chroot_mount ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__chroot_umount to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__chroot_umount ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__config_file to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__config_file ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_agent to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_agent ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_check to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_check ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_reload to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_reload ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_service to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_service ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_template to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_template ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_template_template to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_template_template ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_watch_checks to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_watch_checks ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_watch_event to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_watch_event ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_watch_key to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_watch_key ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_watch_keyprefix to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_watch_keyprefix ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_watch_nodes to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_watch_nodes ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_watch_service to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_watch_service ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__consul_watch_services to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__consul_watch_services ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__cron to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__cron ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__daemontools to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__daemontools ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__daemontools_service to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__daemontools_service ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__debconf_set_selections to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__debconf_set_selections ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__directory to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__directory ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__docker to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__docker ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__docker_compose to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__docker_compose ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__dog_vdi to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__dog_vdi ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__dot_file to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__dot_file ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__file to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__filesystem to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__filesystem ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__firewalld_rule to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__firewalld_rule ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__firewalld_start to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__firewalld_start ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__git to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__git ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__go_get to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__go_get ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__golang_from_vendor to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__golang_from_vendor ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__grafana_dashboard to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__grafana_dashboard ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__group to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__group ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__hostname to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__hostname ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__hosts to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__hosts ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_bootloader_grub to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_bootloader_grub ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_chroot_mount to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_chroot_mount ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_chroot_umount to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_chroot_umount ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_config to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_config ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_directory to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_directory ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_file to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_file ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_fstab to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_fstab ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_generate_fstab to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_generate_fstab ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_mkfs to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_mkfs ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_mount to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_mount ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_partition_msdos to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_partition_msdos ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_partition_msdos_apply to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_partition_msdos_apply ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_reboot to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_reboot ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_reset_disk to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_reset_disk ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_stage to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_stage ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_umount to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_umount ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__iptables_apply to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__iptables_apply ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__iptables_rule to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__iptables_rule ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__issue to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__issue ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__jail to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__jail ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__jail_freebsd10 to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__jail_freebsd10 ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__jail_freebsd9 to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__jail_freebsd9 ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__key_value to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__key_value ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__keyboard to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__keyboard ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__letsencrypt_cert to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__letsencrypt_cert ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__line to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__line ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__link to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__link ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__locale to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__locale ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__locale_system to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__locale_system ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__motd to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__motd ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__mount to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__mount ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__mysql_database to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__mysql_database ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_apt to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_apt ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_dpkg to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_dpkg ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_emerge to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_emerge ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_emerge_dependencies to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_emerge_dependencies ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_luarocks to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_luarocks ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_opkg to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_opkg ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_pacman to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_pacman ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_pip to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_pip ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_pkg_freebsd to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_pkg_freebsd ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_pkg_openbsd to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_pkg_openbsd ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_pkgng_freebsd to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_pkgng_freebsd ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_rubygem to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_rubygem ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_update_index to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_update_index ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_upgrade_all to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_upgrade_all ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_yum to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_zypper to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_zypper ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__pacman_conf to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__pacman_conf ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__pacman_conf_integrate to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__pacman_conf_integrate ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__pf_apply to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__pf_apply ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__pf_ruleset to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__pf_ruleset ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__postfix to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__postfix ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__postfix_master to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__postfix_master ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__postfix_postconf to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__postfix_postconf ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__postfix_postmap to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__postfix_postmap ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__postfix_reload to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__postfix_reload ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__postgres_database to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__postgres_database ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__postgres_extension to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__postgres_extension ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__postgres_role to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__postgres_role ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__process to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__process ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__prometheus_alertmanager to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__prometheus_alertmanager ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__prometheus_exporter to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__prometheus_exporter ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__prometheus_server to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__prometheus_server ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__pyvenv to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__pyvenv ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__qemu_img to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__qemu_img ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__rbenv to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__rbenv ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__rsync to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__rsync ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__rvm to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__rvm ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__rvm_gem to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__rvm_gem ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__rvm_gemset to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__rvm_gemset ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__rvm_ruby to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__rvm_ruby ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__ssh_authorized_key to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__ssh_authorized_key ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__ssh_authorized_keys to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__ssh_authorized_keys ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__ssh_dot_ssh to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__ssh_dot_ssh ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__staged_file to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__staged_file ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__start_on_boot to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__start_on_boot ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__sysctl to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__sysctl ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__systemd_unit to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__systemd_unit ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__timezone to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__timezone ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__update_alternatives to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__update_alternatives ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__user to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__user ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__user_groups to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__user_groups ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__yum_repo to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__yum_repo ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__zypper_repo to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__zypper_repo ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__zypper_service to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__zypper_service ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__teredo to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__teredo ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__acl to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__acl ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__apt_default_release to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__apt_default_release ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__docker_config to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__docker_config ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__docker_secret to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__docker_secret ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__docker_stack to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__docker_stack ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__docker_swarm to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__docker_swarm ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__install_coreos to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__install_coreos ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__ping to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__ping ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__check_messages to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__check_messages ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__clean_path to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__clean_path ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__package_apk to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_apk ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__ufw to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__ufw ... +TRACE: localhost: Linking /root/cdist/cdist/conf/type/__ufw_rule to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__ufw_rule ... +DEBUG: localhost: Checking conf_dir /root/.cdist ... +DEBUG: localhost: Checking conf_dir /root/ungleich-learning-circle/kjg/dot-cdist ... +TRACE: localhost: Linking /root/ungleich-learning-circle/kjg/dot-cdist/manifest/init to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/init ... +TRACE: localhost: Linking /root/ungleich-learning-circle/kjg/dot-cdist/type/__my_computer to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer ... +DEBUG: localhost: Checking conf_dir /root/ungleich-learning-circle/kjg/dot-cdist ... +TRACE: localhost: Linking /root/ungleich-learning-circle/kjg/dot-cdist/manifest/init to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/init ... +TRACE: localhost: Linking /root/ungleich-learning-circle/kjg/dot-cdist/type/__my_computer to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer ... +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__apt_key +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__apt_key_uri +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__apt_mark +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__apt_norecommends +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__apt_ppa +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__apt_source +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__apt_update_index +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__block +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__ccollect_source +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__cdist +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__cdistmarker +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__chroot_mount +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__chroot_umount +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__config_file +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_agent +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_check +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_reload +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_service +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_template +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_template_template +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_watch_checks +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_watch_event +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_watch_key +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_watch_keyprefix +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_watch_nodes +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_watch_service +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__consul_watch_services +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__cron +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__daemontools +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__daemontools_service +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__debconf_set_selections +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__directory +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__docker +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__docker_compose +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__dog_vdi +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__dot_file +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__file +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__filesystem +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__firewalld_rule +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__firewalld_start +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__git +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__go_get +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__golang_from_vendor +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__grafana_dashboard +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__group +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__hostname +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__hosts +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_bootloader_grub +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_chroot_mount +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_chroot_umount +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_config +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_directory +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_file +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_fstab +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_generate_fstab +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_mkfs +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_mount +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_partition_msdos +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_partition_msdos_apply +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_reboot +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_reset_disk +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_stage +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_umount +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__iptables_apply +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__iptables_rule +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__issue +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__jail +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__jail_freebsd10 +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__jail_freebsd9 +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__key_value +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__keyboard +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__letsencrypt_cert +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__line +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__link +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__locale +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__locale_system +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__motd +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__mount +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__mysql_database +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_apt +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_dpkg +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_emerge +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_emerge_dependencies +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_luarocks +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_opkg +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_pacman +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_pip +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_pkg_freebsd +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_pkg_openbsd +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_pkgng_freebsd +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_rubygem +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_update_index +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_upgrade_all +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_yum +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_zypper +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__pacman_conf +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__pacman_conf_integrate +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__pf_apply +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__pf_ruleset +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__postfix +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__postfix_master +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__postfix_postconf +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__postfix_postmap +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__postfix_reload +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__postgres_database +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__postgres_extension +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__postgres_role +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__process +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__prometheus_alertmanager +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__prometheus_exporter +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__prometheus_server +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__pyvenv +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__qemu_img +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__rbenv +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__rsync +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__rvm +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__rvm_gem +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__rvm_gemset +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__rvm_ruby +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__ssh_authorized_key +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__ssh_authorized_keys +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__ssh_dot_ssh +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__staged_file +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__start_on_boot +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__sysctl +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__systemd_unit +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__timezone +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__update_alternatives +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__user +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__user_groups +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__yum_repo +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__zypper_repo +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__zypper_service +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__teredo +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__acl +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__apt_default_release +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__docker_config +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__docker_secret +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__docker_stack +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__docker_swarm +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__install_coreos +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__ping +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__check_messages +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__clean_path +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__package_apk +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__ufw +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__ufw_rule +TRACE: localhost: Linking emulator: /root/cdist/scripts/cdist to /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/bin/__my_computer +TRACE: localhost: Object marker .cdist-6gtix4w8 saved in /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object_marker +TRACE: localhost: Remote rmdir: /var/lib/cdist +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'rm', '-rf', '/var/lib/cdist'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'rm', '-rf', '/var/lib/cdist']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'rm', '-rf', '/var/lib/cdist']; Remote stdout: +TRACE: localhost: Remote mkdir: /var/lib/cdist +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist']; Remote stdout: +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist']; Remote stdout: +TRACE: localhost: Remote mkdir: /var/lib/cdist/conf +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf']; Remote stdout: +VERBOSE: localhost: Running global explorers +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer -> /var/lib/cdist/conf/explorer +TRACE: localhost: Remote mkdir: /var/lib/cdist/conf/explorer +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf/explorer'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf/explorer']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf/explorer']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/hostname', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/os', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/runlevel', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/memory', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/os_release', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/cpu_sockets', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/is-freebsd-jail', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/kernel_name', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_codename', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_description', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_id', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_release', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/machine', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/machine_type', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/os_version', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/cpu_cores', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/disks', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/init', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/interfaces', 'localhost:/var/lib/cdist/conf/explorer'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/hostname', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/os', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/runlevel', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/memory', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/os_release', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/cpu_sockets', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/is-freebsd-jail', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/kernel_name', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_codename', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_description', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_id', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_release', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/machine', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/machine_type', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/os_version', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/cpu_cores', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/disks', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/init', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/interfaces', 'localhost:/var/lib/cdist/conf/explorer']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/hostname', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/os', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/runlevel', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/memory', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/os_release', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/cpu_sockets', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/is-freebsd-jail', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/kernel_name', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_codename', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_description', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_id', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/lsb_release', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/machine', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/machine_type', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/os_version', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/cpu_cores', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/disks', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/init', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/explorer/interfaces', 'localhost:/var/lib/cdist/conf/explorer']; Remote stdout: +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist/conf/explorer/*'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist/conf/explorer/*']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist/conf/explorer/*']; Remote stdout: +DEBUG: localhost: Running global explorers sequentially +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/hostname'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/hostname'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/os'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/os'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/runlevel'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/runlevel'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/memory'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/memory'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/os_release'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/os_release'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/cpu_sockets'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/cpu_sockets'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/is-freebsd-jail'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/is-freebsd-jail'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/kernel_name'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/kernel_name'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/lsb_codename'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/lsb_codename'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/lsb_description'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/lsb_description'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/lsb_id'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/lsb_id'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/lsb_release'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/lsb_release'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/machine'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/machine'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/machine_type'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/machine_type'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/os_version'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/os_version'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/cpu_cores'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/cpu_cores'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/disks'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/disks'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/init'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/init'"]; Remote stderr: +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/interfaces'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE;/bin/sh -e /var/lib/cdist/conf/explorer/interfaces'"]; Remote stderr: +VERBOSE: localhost: Running initial manifest /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/init +DEBUG: localhost: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/init is NOT executable, running it with /bin/sh -e +TRACE: localhost: Local run: ['/bin/sh', '-e', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/init'] +TRACE: localhost: Command: ['/bin/sh', '-e', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/init']; Local stderr: +TRACE: localhost: Command: ['/bin/sh', '-e', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/init']; Local stdout: TRACE: localhost: Args: Namespace() +DEBUG: cdist-flock: Acquiring lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__my_computer_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Acquired lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__my_computer_.cdist-6gtix4w8.lock +TRACE: localhost: Finished __my_computer/.cdist-6gtix4w8 {} +DEBUG: cdist-flock: Releasing lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__my_computer_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Released lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__my_computer_.cdist-6gtix4w8.lock + +DEBUG: localhost: Iteration in sequential mode +VERBOSE: localhost: Preparing object __my_computer/ +VERBOSE: localhost: Running manifest and explorers for __my_computer/ +VERBOSE: localhost: Running type explorers for +TRACE: localhost: Transferring type explorers for type: +TRACE: localhost: Transferring object parameters for object: __my_computer/ +VERBOSE: localhost: Running type manifest /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer/manifest for object __my_computer/ +DEBUG: localhost: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer/manifest is NOT executable, running it with /bin/sh -e +TRACE: localhost: Local run: ['/bin/sh', '-e', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer/manifest'] +TRACE: localhost: Command: ['/bin/sh', '-e', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer/manifest']; Local stderr: +TRACE: localhost: Command: ['/bin/sh', '-e', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer/manifest']; Local stdout: TRACE: localhost: Args: Namespace(name=None, object_id=['zsh'], pkgsite=None, ptype=None, repo=None, state='present', type=None, version=None) +DEBUG: cdist-flock: Acquiring lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packagezsh_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Acquired lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packagezsh_.cdist-6gtix4w8.lock +DEBUG: localhost: Recording autorequirement __package/zsh for __my_computer/ +TRACE: localhost: Finished __package/zsh/.cdist-6gtix4w8 {'state': 'present'} +DEBUG: cdist-flock: Releasing lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packagezsh_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Released lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packagezsh_.cdist-6gtix4w8.lock +TRACE: localhost: Args: Namespace(name=None, object_id=['mosh'], pkgsite=None, ptype=None, repo=None, state='present', type=None, version=None) +DEBUG: cdist-flock: Acquiring lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packagemosh_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Acquired lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packagemosh_.cdist-6gtix4w8.lock +DEBUG: localhost: Recording autorequirement __package/mosh for __my_computer/ +TRACE: localhost: Finished __package/mosh/.cdist-6gtix4w8 {'state': 'present'} +DEBUG: cdist-flock: Releasing lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packagemosh_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Released lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packagemosh_.cdist-6gtix4w8.lock +TRACE: localhost: Args: Namespace(name=None, object_id=['emacs'], pkgsite=None, ptype=None, repo=None, state='present', type=None, version=None) +DEBUG: cdist-flock: Acquiring lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packageemacs_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Acquired lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packageemacs_.cdist-6gtix4w8.lock +DEBUG: localhost: Recording autorequirement __package/emacs for __my_computer/ +TRACE: localhost: Finished __package/emacs/.cdist-6gtix4w8 {'state': 'present'} +DEBUG: cdist-flock: Releasing lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packageemacs_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Released lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packageemacs_.cdist-6gtix4w8.lock +TRACE: localhost: Args: Namespace(name=None, object_id=['nmap'], pkgsite=None, ptype=None, repo=None, state='present', type=None, version=None) +DEBUG: cdist-flock: Acquiring lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packagenmap_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Acquired lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packagenmap_.cdist-6gtix4w8.lock +DEBUG: localhost: Recording autorequirement __package/nmap for __my_computer/ +TRACE: localhost: Finished __package/nmap/.cdist-6gtix4w8 {'state': 'present'} +DEBUG: cdist-flock: Releasing lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packagenmap_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Released lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__packagenmap_.cdist-6gtix4w8.lock +TRACE: localhost: Args: Namespace(group=None, mode='0644', object_id=['/root/.emacs'], onchange=None, owner=None, source='/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer/files/.emacs', state='present') +DEBUG: cdist-flock: Acquiring lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__file_root_.emacs_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Acquired lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__file_root_.emacs_.cdist-6gtix4w8.lock +DEBUG: localhost: reqs = __package/emacs +DEBUG: localhost: Recording requirement __package/emacs for __file/root/.emacs +DEBUG: localhost: Recording autorequirement __file/root/.emacs for __my_computer/ +TRACE: localhost: Finished __file/root/.emacs/.cdist-6gtix4w8 {'state': 'present', 'mode': '0644', 'source': '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer/files/.emacs'} +DEBUG: cdist-flock: Releasing lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__file_root_.emacs_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Released lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__file_root_.emacs_.cdist-6gtix4w8.lock + +DEBUG: localhost: Iteration in sequential mode +VERBOSE: localhost: Preparing object __package/zsh +VERBOSE: localhost: Running manifest and explorers for __package/zsh +VERBOSE: localhost: Running type explorers for +TRACE: localhost: Transferring type explorers for type: +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/explorer -> /var/lib/cdist/conf/type/__package/explorer +TRACE: localhost: Remote mkdir: /var/lib/cdist/conf/type/__package/explorer +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf/type/__package/explorer'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf/type/__package/explorer']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf/type/__package/explorer']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/explorer/pkgng_exists', 'localhost:/var/lib/cdist/conf/type/__package/explorer'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/explorer/pkgng_exists', 'localhost:/var/lib/cdist/conf/type/__package/explorer']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/explorer/pkgng_exists', 'localhost:/var/lib/cdist/conf/type/__package/explorer']; Remote stdout: +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist/conf/type/__package/explorer/*'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist/conf/type/__package/explorer/*']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist/conf/type/__package/explorer/*']; Remote stdout: +TRACE: localhost: Transferring object parameters for object: __package/zsh +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/zsh/.cdist-6gtix4w8/parameter -> /var/lib/cdist/object/__package/zsh/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote mkdir: /var/lib/cdist/object/__package/zsh/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package/zsh/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package/zsh/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package/zsh/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/zsh/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package/zsh/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/zsh/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package/zsh/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/zsh/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package/zsh/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Running type explorer 'pkgng_exists' for object '__package/zsh' +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package/zsh/.cdist-6gtix4w8; export __object_id=zsh; export __object_name=__package/zsh; export __object_fq=__package/zsh/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package/explorer/pkgng_exists'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package/zsh/.cdist-6gtix4w8; export __object_id=zsh; export __object_name=__package/zsh; export __object_fq=__package/zsh/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package/explorer/pkgng_exists'"]; Remote stderr: +VERBOSE: localhost: Running type manifest /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/zsh +DEBUG: localhost: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest is executable, running it +TRACE: localhost: Local run: ['/root/cdist/cdist/conf/type/__package/manifest'] +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__package/manifest']; Local stderr: +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__package/manifest']; Local stdout: TRACE: localhost: Args: Namespace(name=None, object_id=['zsh'], state='present', url=None) +DEBUG: cdist-flock: Acquiring lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yumzsh_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Acquired lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yumzsh_.cdist-6gtix4w8.lock +DEBUG: localhost: Recording autorequirement __package_yum/zsh for __package/zsh +TRACE: localhost: Finished __package_yum/zsh/.cdist-6gtix4w8 {'state': 'present'} +DEBUG: cdist-flock: Releasing lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yumzsh_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Released lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yumzsh_.cdist-6gtix4w8.lock + +VERBOSE: localhost: Preparing object __package/mosh +VERBOSE: localhost: Running manifest and explorers for __package/mosh +VERBOSE: localhost: Running type explorers for +TRACE: localhost: Transferring type explorers for type: +TRACE: localhost: Skipping retransfer of type explorers for: +TRACE: localhost: Transferring object parameters for object: __package/mosh +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/mosh/.cdist-6gtix4w8/parameter -> /var/lib/cdist/object/__package/mosh/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote mkdir: /var/lib/cdist/object/__package/mosh/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package/mosh/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package/mosh/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package/mosh/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/mosh/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package/mosh/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/mosh/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package/mosh/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/mosh/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package/mosh/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Running type explorer 'pkgng_exists' for object '__package/mosh' +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package/mosh/.cdist-6gtix4w8; export __object_id=mosh; export __object_name=__package/mosh; export __object_fq=__package/mosh/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package/explorer/pkgng_exists'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package/mosh/.cdist-6gtix4w8; export __object_id=mosh; export __object_name=__package/mosh; export __object_fq=__package/mosh/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package/explorer/pkgng_exists'"]; Remote stderr: +VERBOSE: localhost: Running type manifest /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/mosh +DEBUG: localhost: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest is executable, running it +TRACE: localhost: Local run: ['/root/cdist/cdist/conf/type/__package/manifest'] +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__package/manifest']; Local stderr: +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__package/manifest']; Local stdout: TRACE: localhost: Args: Namespace(name=None, object_id=['mosh'], state='present', url=None) +DEBUG: cdist-flock: Acquiring lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yummosh_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Acquired lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yummosh_.cdist-6gtix4w8.lock +DEBUG: localhost: Recording autorequirement __package_yum/mosh for __package/mosh +TRACE: localhost: Finished __package_yum/mosh/.cdist-6gtix4w8 {'state': 'present'} +DEBUG: cdist-flock: Releasing lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yummosh_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Released lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yummosh_.cdist-6gtix4w8.lock + +VERBOSE: localhost: Preparing object __package/emacs +VERBOSE: localhost: Running manifest and explorers for __package/emacs +VERBOSE: localhost: Running type explorers for +TRACE: localhost: Transferring type explorers for type: +TRACE: localhost: Skipping retransfer of type explorers for: +TRACE: localhost: Transferring object parameters for object: __package/emacs +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/emacs/.cdist-6gtix4w8/parameter -> /var/lib/cdist/object/__package/emacs/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote mkdir: /var/lib/cdist/object/__package/emacs/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package/emacs/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package/emacs/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package/emacs/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/emacs/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package/emacs/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/emacs/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package/emacs/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/emacs/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package/emacs/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Running type explorer 'pkgng_exists' for object '__package/emacs' +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package/emacs/.cdist-6gtix4w8; export __object_id=emacs; export __object_name=__package/emacs; export __object_fq=__package/emacs/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package/explorer/pkgng_exists'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package/emacs/.cdist-6gtix4w8; export __object_id=emacs; export __object_name=__package/emacs; export __object_fq=__package/emacs/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package/explorer/pkgng_exists'"]; Remote stderr: +VERBOSE: localhost: Running type manifest /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/emacs +DEBUG: localhost: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest is executable, running it +TRACE: localhost: Local run: ['/root/cdist/cdist/conf/type/__package/manifest'] +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__package/manifest']; Local stderr: +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__package/manifest']; Local stdout: TRACE: localhost: Args: Namespace(name=None, object_id=['emacs'], state='present', url=None) +DEBUG: cdist-flock: Acquiring lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yumemacs_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Acquired lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yumemacs_.cdist-6gtix4w8.lock +DEBUG: localhost: Recording autorequirement __package_yum/emacs for __package/emacs +TRACE: localhost: Finished __package_yum/emacs/.cdist-6gtix4w8 {'state': 'present'} +DEBUG: cdist-flock: Releasing lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yumemacs_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Released lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yumemacs_.cdist-6gtix4w8.lock + +VERBOSE: localhost: Preparing object __package/nmap +VERBOSE: localhost: Running manifest and explorers for __package/nmap +VERBOSE: localhost: Running type explorers for +TRACE: localhost: Transferring type explorers for type: +TRACE: localhost: Skipping retransfer of type explorers for: +TRACE: localhost: Transferring object parameters for object: __package/nmap +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/nmap/.cdist-6gtix4w8/parameter -> /var/lib/cdist/object/__package/nmap/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote mkdir: /var/lib/cdist/object/__package/nmap/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package/nmap/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package/nmap/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package/nmap/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/nmap/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package/nmap/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/nmap/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package/nmap/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package/nmap/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package/nmap/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Running type explorer 'pkgng_exists' for object '__package/nmap' +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package/nmap/.cdist-6gtix4w8; export __object_id=nmap; export __object_name=__package/nmap; export __object_fq=__package/nmap/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package/explorer/pkgng_exists'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package/nmap/.cdist-6gtix4w8; export __object_id=nmap; export __object_name=__package/nmap; export __object_fq=__package/nmap/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package/explorer/pkgng_exists'"]; Remote stderr: +VERBOSE: localhost: Running type manifest /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/nmap +DEBUG: localhost: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest is executable, running it +TRACE: localhost: Local run: ['/root/cdist/cdist/conf/type/__package/manifest'] +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__package/manifest']; Local stderr: +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__package/manifest']; Local stdout: TRACE: localhost: Args: Namespace(name=None, object_id=['nmap'], state='present', url=None) +DEBUG: cdist-flock: Acquiring lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yumnmap_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Acquired lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yumnmap_.cdist-6gtix4w8.lock +DEBUG: localhost: Recording autorequirement __package_yum/nmap for __package/nmap +TRACE: localhost: Finished __package_yum/nmap/.cdist-6gtix4w8 {'state': 'present'} +DEBUG: cdist-flock: Releasing lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yumnmap_.cdist-6gtix4w8.lock +DEBUG: cdist-flock: Released lock on /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/.__package_yumnmap_.cdist-6gtix4w8.lock + +DEBUG: localhost: Iteration in sequential mode +VERBOSE: localhost: Preparing object __package_yum/zsh +VERBOSE: localhost: Running manifest and explorers for __package_yum/zsh +VERBOSE: localhost: Running type explorers for +TRACE: localhost: Transferring type explorers for type: +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum/explorer -> /var/lib/cdist/conf/type/__package_yum/explorer +TRACE: localhost: Remote mkdir: /var/lib/cdist/conf/type/__package_yum/explorer +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf/type/__package_yum/explorer'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf/type/__package_yum/explorer']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf/type/__package_yum/explorer']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum/explorer/pkg_version', 'localhost:/var/lib/cdist/conf/type/__package_yum/explorer'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum/explorer/pkg_version', 'localhost:/var/lib/cdist/conf/type/__package_yum/explorer']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum/explorer/pkg_version', 'localhost:/var/lib/cdist/conf/type/__package_yum/explorer']; Remote stdout: +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist/conf/type/__package_yum/explorer/*'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist/conf/type/__package_yum/explorer/*']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist/conf/type/__package_yum/explorer/*']; Remote stdout: +TRACE: localhost: Transferring object parameters for object: __package_yum/zsh +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/zsh/.cdist-6gtix4w8/parameter -> /var/lib/cdist/object/__package_yum/zsh/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote mkdir: /var/lib/cdist/object/__package_yum/zsh/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package_yum/zsh/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package_yum/zsh/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package_yum/zsh/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/zsh/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package_yum/zsh/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/zsh/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package_yum/zsh/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/zsh/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package_yum/zsh/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Running type explorer 'pkg_version' for object '__package_yum/zsh' +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package_yum/zsh/.cdist-6gtix4w8; export __object_id=zsh; export __object_name=__package_yum/zsh; export __object_fq=__package_yum/zsh/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package_yum/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package_yum/explorer/pkg_version'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package_yum/zsh/.cdist-6gtix4w8; export __object_id=zsh; export __object_name=__package_yum/zsh; export __object_fq=__package_yum/zsh/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package_yum/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package_yum/explorer/pkg_version'"]; Remote stderr: +VERBOSE: localhost: Running object __package_yum/zsh +DEBUG: localhost: Generating code for __package_yum/zsh +DEBUG: localhost: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum/gencode-remote is executable, running it +TRACE: localhost: Local run: ['/root/cdist/cdist/conf/type/__package_yum/gencode-remote'] +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__package_yum/gencode-remote']; Local stderr: +TRACE: localhost: Finishing run of __package_yum/zsh +VERBOSE: localhost: Preparing object __package_yum/mosh +VERBOSE: localhost: Running manifest and explorers for __package_yum/mosh +VERBOSE: localhost: Running type explorers for +TRACE: localhost: Transferring type explorers for type: +TRACE: localhost: Skipping retransfer of type explorers for: +TRACE: localhost: Transferring object parameters for object: __package_yum/mosh +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/mosh/.cdist-6gtix4w8/parameter -> /var/lib/cdist/object/__package_yum/mosh/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote mkdir: /var/lib/cdist/object/__package_yum/mosh/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package_yum/mosh/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package_yum/mosh/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package_yum/mosh/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/mosh/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package_yum/mosh/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/mosh/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package_yum/mosh/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/mosh/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package_yum/mosh/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Running type explorer 'pkg_version' for object '__package_yum/mosh' +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package_yum/mosh/.cdist-6gtix4w8; export __object_id=mosh; export __object_name=__package_yum/mosh; export __object_fq=__package_yum/mosh/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package_yum/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package_yum/explorer/pkg_version'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package_yum/mosh/.cdist-6gtix4w8; export __object_id=mosh; export __object_name=__package_yum/mosh; export __object_fq=__package_yum/mosh/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package_yum/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package_yum/explorer/pkg_version'"]; Remote stderr: +VERBOSE: localhost: Running object __package_yum/mosh +DEBUG: localhost: Generating code for __package_yum/mosh +DEBUG: localhost: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum/gencode-remote is executable, running it +TRACE: localhost: Local run: ['/root/cdist/cdist/conf/type/__package_yum/gencode-remote'] +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__package_yum/gencode-remote']; Local stderr: +TRACE: localhost: Finishing run of __package_yum/mosh +VERBOSE: localhost: Preparing object __package_yum/emacs +VERBOSE: localhost: Running manifest and explorers for __package_yum/emacs +VERBOSE: localhost: Running type explorers for +TRACE: localhost: Transferring type explorers for type: +TRACE: localhost: Skipping retransfer of type explorers for: +TRACE: localhost: Transferring object parameters for object: __package_yum/emacs +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/emacs/.cdist-6gtix4w8/parameter -> /var/lib/cdist/object/__package_yum/emacs/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote mkdir: /var/lib/cdist/object/__package_yum/emacs/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package_yum/emacs/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package_yum/emacs/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package_yum/emacs/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/emacs/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package_yum/emacs/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/emacs/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package_yum/emacs/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/emacs/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package_yum/emacs/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Running type explorer 'pkg_version' for object '__package_yum/emacs' +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package_yum/emacs/.cdist-6gtix4w8; export __object_id=emacs; export __object_name=__package_yum/emacs; export __object_fq=__package_yum/emacs/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package_yum/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package_yum/explorer/pkg_version'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package_yum/emacs/.cdist-6gtix4w8; export __object_id=emacs; export __object_name=__package_yum/emacs; export __object_fq=__package_yum/emacs/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package_yum/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package_yum/explorer/pkg_version'"]; Remote stderr: +VERBOSE: localhost: Running object __package_yum/emacs +DEBUG: localhost: Generating code for __package_yum/emacs +DEBUG: localhost: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum/gencode-remote is executable, running it +TRACE: localhost: Local run: ['/root/cdist/cdist/conf/type/__package_yum/gencode-remote'] +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__package_yum/gencode-remote']; Local stderr: +TRACE: localhost: Finishing run of __package_yum/emacs +VERBOSE: localhost: Preparing object __package_yum/nmap +VERBOSE: localhost: Running manifest and explorers for __package_yum/nmap +VERBOSE: localhost: Running type explorers for +TRACE: localhost: Transferring type explorers for type: +TRACE: localhost: Skipping retransfer of type explorers for: +TRACE: localhost: Transferring object parameters for object: __package_yum/nmap +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/nmap/.cdist-6gtix4w8/parameter -> /var/lib/cdist/object/__package_yum/nmap/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote mkdir: /var/lib/cdist/object/__package_yum/nmap/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package_yum/nmap/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package_yum/nmap/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__package_yum/nmap/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/nmap/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package_yum/nmap/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/nmap/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package_yum/nmap/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__package_yum/nmap/.cdist-6gtix4w8/parameter/state', 'localhost:/var/lib/cdist/object/__package_yum/nmap/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Running type explorer 'pkg_version' for object '__package_yum/nmap' +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package_yum/nmap/.cdist-6gtix4w8; export __object_id=nmap; export __object_name=__package_yum/nmap; export __object_fq=__package_yum/nmap/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package_yum/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package_yum/explorer/pkg_version'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__package_yum/nmap/.cdist-6gtix4w8; export __object_id=nmap; export __object_name=__package_yum/nmap; export __object_fq=__package_yum/nmap/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__package_yum/explorer;/bin/sh -e /var/lib/cdist/conf/type/__package_yum/explorer/pkg_version'"]; Remote stderr: +VERBOSE: localhost: Running object __package_yum/nmap +DEBUG: localhost: Generating code for __package_yum/nmap +DEBUG: localhost: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package_yum/gencode-remote is executable, running it +TRACE: localhost: Local run: ['/root/cdist/cdist/conf/type/__package_yum/gencode-remote'] +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__package_yum/gencode-remote']; Local stderr: +TRACE: localhost: Finishing run of __package_yum/nmap +DEBUG: localhost: Iteration in sequential mode +VERBOSE: localhost: Running object __package/zsh +DEBUG: localhost: Generating code for __package/zsh +TRACE: localhost: Finishing run of __package/zsh +VERBOSE: localhost: Running object __package/mosh +DEBUG: localhost: Generating code for __package/mosh +TRACE: localhost: Finishing run of __package/mosh +VERBOSE: localhost: Running object __package/emacs +DEBUG: localhost: Generating code for __package/emacs +TRACE: localhost: Finishing run of __package/emacs +VERBOSE: localhost: Running object __package/nmap +DEBUG: localhost: Generating code for __package/nmap +TRACE: localhost: Finishing run of __package/nmap +VERBOSE: localhost: Preparing object __file/root/.emacs +VERBOSE: localhost: Running manifest and explorers for __file/root/.emacs +VERBOSE: localhost: Running type explorers for +TRACE: localhost: Transferring type explorers for type: +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/explorer -> /var/lib/cdist/conf/type/__file/explorer +TRACE: localhost: Remote mkdir: /var/lib/cdist/conf/type/__file/explorer +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf/type/__file/explorer'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf/type/__file/explorer']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/conf/type/__file/explorer']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/explorer/cksum', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/explorer/type', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/explorer/stat', 'localhost:/var/lib/cdist/conf/type/__file/explorer'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/explorer/cksum', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/explorer/type', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/explorer/stat', 'localhost:/var/lib/cdist/conf/type/__file/explorer']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/explorer/cksum', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/explorer/type', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/explorer/stat', 'localhost:/var/lib/cdist/conf/type/__file/explorer']; Remote stdout: +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist/conf/type/__file/explorer/*'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist/conf/type/__file/explorer/*']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'chmod', '0700', '/var/lib/cdist/conf/type/__file/explorer/*']; Remote stdout: +TRACE: localhost: Transferring object parameters for object: __file/root/.emacs +TRACE: localhost: Remote transfer: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__file/root/.emacs/.cdist-6gtix4w8/parameter -> /var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote mkdir: /var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8/parameter +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', 'mkdir', '-p', '/var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Remote run: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__file/root/.emacs/.cdist-6gtix4w8/parameter/state', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__file/root/.emacs/.cdist-6gtix4w8/parameter/mode', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__file/root/.emacs/.cdist-6gtix4w8/parameter/source', 'localhost:/var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8/parameter'] +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__file/root/.emacs/.cdist-6gtix4w8/parameter/state', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__file/root/.emacs/.cdist-6gtix4w8/parameter/mode', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__file/root/.emacs/.cdist-6gtix4w8/parameter/source', 'localhost:/var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8/parameter']; Remote stderr: +TRACE: localhost: Command: ['scp', '-o', 'User=root', '-q', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__file/root/.emacs/.cdist-6gtix4w8/parameter/state', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__file/root/.emacs/.cdist-6gtix4w8/parameter/mode', '/tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/object/__file/root/.emacs/.cdist-6gtix4w8/parameter/source', 'localhost:/var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8/parameter']; Remote stdout: +TRACE: localhost: Running type explorer 'cksum' for object '__file/root/.emacs' +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8; export __object_id=root/.emacs; export __object_name=__file/root/.emacs; export __object_fq=__file/root/.emacs/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__file/explorer;/bin/sh -e /var/lib/cdist/conf/type/__file/explorer/cksum'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8; export __object_id=root/.emacs; export __object_name=__file/root/.emacs; export __object_fq=__file/root/.emacs/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__file/explorer;/bin/sh -e /var/lib/cdist/conf/type/__file/explorer/cksum'"]; Remote stderr: +TRACE: localhost: Running type explorer 'type' for object '__file/root/.emacs' +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8; export __object_id=root/.emacs; export __object_name=__file/root/.emacs; export __object_fq=__file/root/.emacs/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__file/explorer;/bin/sh -e /var/lib/cdist/conf/type/__file/explorer/type'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8; export __object_id=root/.emacs; export __object_name=__file/root/.emacs; export __object_fq=__file/root/.emacs/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__file/explorer;/bin/sh -e /var/lib/cdist/conf/type/__file/explorer/type'"]; Remote stderr: +TRACE: localhost: Running type explorer 'stat' for object '__file/root/.emacs' +DEBUG: localhost: return_output is True, ignoring stdout +TRACE: localhost: Remote run: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8; export __object_id=root/.emacs; export __object_name=__file/root/.emacs; export __object_fq=__file/root/.emacs/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__file/explorer;/bin/sh -e /var/lib/cdist/conf/type/__file/explorer/stat'"] +TRACE: localhost: Command: ['ssh', '-o', 'User=root', '-o', 'ControlPath=/tmp/tmpf87m4xwe/s', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=2h', 'localhost', "/bin/sh -c ' export __target_host=localhost; export __target_hostname=localhost; export __target_fqdn=localhost.localdomain; export __explorer=/var/lib/cdist/conf/explorer; export __target_host_tags=; export __cdist_log_level=5; export __cdist_log_level_name=TRACE; export __object=/var/lib/cdist/object/__file/root/.emacs/.cdist-6gtix4w8; export __object_id=root/.emacs; export __object_name=__file/root/.emacs; export __object_fq=__file/root/.emacs/.cdist-6gtix4w8; export __type_explorer=/var/lib/cdist/conf/type/__file/explorer;/bin/sh -e /var/lib/cdist/conf/type/__file/explorer/stat'"]; Remote stderr: +VERBOSE: localhost: Running object __file/root/.emacs +DEBUG: localhost: Generating code for __file/root/.emacs +DEBUG: localhost: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/gencode-local is executable, running it +TRACE: localhost: Local run: ['/root/cdist/cdist/conf/type/__file/gencode-local'] +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__file/gencode-local']; Local stderr: +DEBUG: localhost: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data/conf/type/__file/gencode-remote is executable, running it +TRACE: localhost: Local run: ['/root/cdist/cdist/conf/type/__file/gencode-remote'] +TRACE: localhost: Command: ['/root/cdist/cdist/conf/type/__file/gencode-remote']; Local stderr: +TRACE: localhost: Finishing run of __file/root/.emacs +DEBUG: localhost: Iteration in sequential mode +VERBOSE: localhost: Running object __my_computer/ +DEBUG: localhost: Generating code for __my_computer/ +TRACE: localhost: Finishing run of __my_computer/ +DEBUG: localhost: Iteration in sequential mode +DEBUG: localhost: Running cleanup commands +TRACE: localhost: Local run: ['ssh', '-o', 'User=root', '-O', 'exit', '-S', '/tmp/tmpf87m4xwe/s', 'localhost'] +TRACE: localhost: cache subpath pattern: None +DEBUG: localhost: cache subpath: 421aa90e079fa326b6494f812ad13e79 +TRACE: localhost: Saving cache: /tmp/tmp4n4p2hbt/421aa90e079fa326b6494f812ad13e79/data to /root/.cdist/cache/421aa90e079fa326b6494f812ad13e79 +INFO: localhost: Finished successful run in 2.17 seconds +VERBOSE: config: Total processing time for 1 host(s): 2.1842637062072754 From b6240df60440afc0549e3a8c6730eccebd514334 Mon Sep 17 00:00:00 2001 From: elf Date: Wed, 6 May 2020 23:05:01 +0900 Subject: [PATCH 11/11] [cdist #2]delete log directory --- kjg/log/cdist2/v.log | 2 -- kjg/log/cdist2/vv.log | 50 ------------------------------------------- 2 files changed, 52 deletions(-) delete mode 100644 kjg/log/cdist2/v.log delete mode 100644 kjg/log/cdist2/vv.log diff --git a/kjg/log/cdist2/v.log b/kjg/log/cdist2/v.log deleted file mode 100644 index f19c953..0000000 --- a/kjg/log/cdist2/v.log +++ /dev/null @@ -1,2 +0,0 @@ -INFO: localhost: Starting configuration run -INFO: localhost: Finished successful run in 2.24 seconds \ No newline at end of file diff --git a/kjg/log/cdist2/vv.log b/kjg/log/cdist2/vv.log deleted file mode 100644 index fb4397b..0000000 --- a/kjg/log/cdist2/vv.log +++ /dev/null @@ -1,50 +0,0 @@ -INFO: localhost: Starting configuration run -VERBOSE: localhost: Running global explorers -VERBOSE: localhost: Running initial manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/manifest/init -VERBOSE: localhost: Preparing object __my_computer/ -VERBOSE: localhost: Running manifest and explorers for __my_computer/ -VERBOSE: localhost: Running type explorers for -VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__my_computer/manifest for object __my_computer/ -VERBOSE: localhost: Preparing object __package/zsh -VERBOSE: localhost: Running manifest and explorers for __package/zsh -VERBOSE: localhost: Running type explorers for -VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/zsh -VERBOSE: localhost: Preparing object __package/mosh -VERBOSE: localhost: Running manifest and explorers for __package/mosh -VERBOSE: localhost: Running type explorers for -VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/mosh -VERBOSE: localhost: Preparing object __package/emacs -VERBOSE: localhost: Running manifest and explorers for __package/emacs -VERBOSE: localhost: Running type explorers for -VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/emacs -VERBOSE: localhost: Preparing object __package/nmap -VERBOSE: localhost: Running manifest and explorers for __package/nmap -VERBOSE: localhost: Running type explorers for -VERBOSE: localhost: Running type manifest /tmp/tmpwosy1grz/421aa90e079fa326b6494f812ad13e79/data/conf/type/__package/manifest for object __package/nmap -VERBOSE: localhost: Preparing object __package_yum/zsh -VERBOSE: localhost: Running manifest and explorers for __package_yum/zsh -VERBOSE: localhost: Running type explorers for -VERBOSE: localhost: Running object __package_yum/zsh -VERBOSE: localhost: Preparing object __package_yum/mosh -VERBOSE: localhost: Running manifest and explorers for __package_yum/mosh -VERBOSE: localhost: Running type explorers for -VERBOSE: localhost: Running object __package_yum/mosh -VERBOSE: localhost: Preparing object __package_yum/emacs -VERBOSE: localhost: Running manifest and explorers for __package_yum/emacs -VERBOSE: localhost: Running type explorers for -VERBOSE: localhost: Running object __package_yum/emacs -VERBOSE: localhost: Preparing object __package_yum/nmap -VERBOSE: localhost: Running manifest and explorers for __package_yum/nmap -VERBOSE: localhost: Running type explorers for -VERBOSE: localhost: Running object __package_yum/nmap -VERBOSE: localhost: Running object __package/zsh -VERBOSE: localhost: Running object __package/mosh -VERBOSE: localhost: Running object __package/emacs -VERBOSE: localhost: Running object __package/nmap -VERBOSE: localhost: Preparing object __file/root/.emacs -VERBOSE: localhost: Running manifest and explorers for __file/root/.emacs -VERBOSE: localhost: Running type explorers for -VERBOSE: localhost: Running object __file/root/.emacs -VERBOSE: localhost: Running object __my_computer/ -INFO: localhost: Finished successful run in 2.15 seconds -VERBOSE: config: Total processing time for 1 host(s): 2.158529043197632 \ No newline at end of file